/** * 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. */ /* * SMSManagementSubscriptionDataDocumentApi.h * * */ #ifndef SMSManagementSubscriptionDataDocumentApi_H_ #define SMSManagementSubscriptionDataDocumentApi_H_ #include <pistache/http.h> #include <pistache/router.h> #include <pistache/http_headers.h> #include <pistache/optional.h> #include "SmsManagementSubscriptionData.h" #include <string> namespace oai::udr::api { using namespace oai::udr::model; class SMSManagementSubscriptionDataDocumentApi { public: SMSManagementSubscriptionDataDocumentApi(std::shared_ptr<Pistache::Rest::Router>); virtual ~SMSManagementSubscriptionDataDocumentApi() {} void init(); const std::string base = "/nudr-dr/v2"; private: void setupRoutes(); void query_sms_mng_data_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); void sms_management_subscription_data_document_api_default_handler(const Pistache::Rest::Request &request, Pistache::Http::ResponseWriter response); std::shared_ptr<Pistache::Rest::Router> router; /// <summary> /// Retrieves the SMS management subscription data of a UE /// </summary> /// <remarks> /// /// </remarks> /// <param name="ueId">UE id</param> /// <param name="servingPlmnId">PLMN ID</param> /// <param name="supportedFeatures">Supported Features (optional, default to "")</param> /// <param name="ifNoneMatch">Validator for conditional requests, as described in RFC 7232, 3.2 (optional, default to "")</param> /// <param name="ifModifiedSince">Validator for conditional requests, as described in RFC 7232, 3.3 (optional, default to "")</param> virtual void query_sms_mng_data(const std::string &ueId, const std::string &servingPlmnId, const Pistache::Optional<std::string> &supportedFeatures, const Pistache::Optional<Pistache::Http::Header::Raw> &ifNoneMatch, const Pistache::Optional<Pistache::Http::Header::Raw> &ifModifiedSince, Pistache::Http::ResponseWriter &response) = 0; }; } #endif /* SMSManagementSubscriptionDataDocumentApi_H_ */