/** * Nudr_DataRepository API OpenAPI file * Unified Data Repository Service. © 2020, 3GPP Organizational Partners (ARIB, * ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved. * * The version of the OpenAPI document: 2.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator * (https://openapi-generator.tech). https://openapi-generator.tech Do not edit * the class manually. */ #include "EventExposureSubscriptionDocumentApiImpl.h" namespace org { namespace openapitools { namespace server { namespace api { using namespace org::openapitools::server::model; EventExposureSubscriptionDocumentApiImpl:: EventExposureSubscriptionDocumentApiImpl( std::shared_ptr<Pistache::Rest::Router> rtr) : EventExposureSubscriptionDocumentApi(rtr) {} void EventExposureSubscriptionDocumentApiImpl::modify_eesubscription( const std::string &ueId, const std::string &subsId, const std::vector<PatchItem> &patchItem, const Pistache::Optional<std::string> &supportedFeatures, Pistache::Http::ResponseWriter &response) { response.send(Pistache::Http::Code::Ok, "Do some magic\n"); } void EventExposureSubscriptionDocumentApiImpl::queryee_subscription( const std::string &ueId, const std::string &subsId, Pistache::Http::ResponseWriter &response) { response.send(Pistache::Http::Code::Ok, "Do some magic\n"); } void EventExposureSubscriptionDocumentApiImpl::removeee_subscriptions( const std::string &ueId, const std::string &subsId, Pistache::Http::ResponseWriter &response) { response.send(Pistache::Http::Code::Ok, "Do some magic\n"); } void EventExposureSubscriptionDocumentApiImpl::update_eesubscriptions( const std::string &ueId, const std::string &subsId, const EeSubscription &eeSubscription, Pistache::Http::ResponseWriter &response) { response.send(Pistache::Http::Code::Ok, "Do some magic\n"); } } // namespace api } // namespace server } // namespace openapitools } // namespace org