EventExposureSubscriptionsCollectionApiImpl.cpp 1.38 KB
Newer Older
yangjian's avatar
yangjian committed
1
/**
yangjian's avatar
yangjian committed
2 3 4 5 6 7 8 9 10 11 12
 * 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.
 */
yangjian's avatar
yangjian committed
13 14 15 16 17 18 19 20 21 22

#include "EventExposureSubscriptionsCollectionApiImpl.h"

namespace org {
namespace openapitools {
namespace server {
namespace api {

using namespace org::openapitools::server::model;

yangjian's avatar
yangjian committed
23 24 25 26
EventExposureSubscriptionsCollectionApiImpl::
    EventExposureSubscriptionsCollectionApiImpl(
        std::shared_ptr<Pistache::Rest::Router> rtr)
    : EventExposureSubscriptionsCollectionApi(rtr) {}
yangjian's avatar
yangjian committed
27

yangjian's avatar
yangjian committed
28 29 30 31
void EventExposureSubscriptionsCollectionApiImpl::create_ee_subscriptions(
    const std::string &ueId, const EeSubscription &eeSubscription,
    Pistache::Http::ResponseWriter &response) {
  response.send(Pistache::Http::Code::Ok, "Do some magic\n");
yangjian's avatar
yangjian committed
32
}
yangjian's avatar
yangjian committed
33 34 35 36 37
void EventExposureSubscriptionsCollectionApiImpl::queryeesubscriptions(
    const std::string &ueId,
    const Pistache::Optional<std::string> &supportedFeatures,
    Pistache::Http::ResponseWriter &response) {
  response.send(Pistache::Http::Code::Ok, "Do some magic\n");
yangjian's avatar
yangjian committed
38 39
}

yangjian's avatar
yangjian committed
40 41 42 43
} // namespace api
} // namespace server
} // namespace openapitools
} // namespace org