RIC-641 Fixing client/server model definitions and adding client and server API
[ric-plt/xapp-frame-cpp.git] / src / model / SubscriptionData.h
1 /*
2 # ==================================================================================
3 # Copyright (c) 2020 HCL Technologies Limited.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ==================================================================================
17 */
18 #ifndef XAPP_MODEL_SubscriptionData_H
19 #define XAPP_MODEL_SubscriptionData_H
20 #include "SubscriptionInstance.h"
21 namespace xapp {
22         namespace model {
23
24                 struct SubscriptionData : ModelBase {
25                         std::vector<std::string> ClientEndpoint;
26                         std::string Meid;
27                         std::string SubscriptionID="";
28                         std::vector<SubscriptionInstance> m_SubscriptionInstances;
29
30                         nlohmann::json validator_schema = R"(
31                                 {
32                                 "$schema": "http://json-schema.org/draft-07/schema#",
33                                 "title": "SubscriptionData",
34                                 "properties": {
35                                     "SubscriptionId": {
36                                         "type": "string"
37                                     },
38                                     "Meid": {
39                                         "type": "string"
40                                     },
41                                     "ClientEndpoint": {
42                                         "type": "array",
43                                         "items": {
44                                             "type": "string"
45                                         }
46                                     },
47                                     "SubscriptionInstances": {
48                                         "type": "array"
49                                     }
50                                 },
51                                 "type": "object"
52                                 })"_json;
53
54                         virtual nlohmann::json get_validator_schema() const { return validator_schema; }
55                 };
56                 void from_json(const nlohmann::json& j, SubscriptionData& ref);
57                 void from_json(const nlohmann::json& j, std::vector<SubscriptionData>& ref);
58                 void to_json(nlohmann::json& j, const SubscriptionData& ref);
59                 void to_json(nlohmann::json& j, const std::vector<SubscriptionData>& ref);
60
61
62         } /*namespace model*/
63 } /*namespace xapp*/
64 #endif /*XAPP_MODEL_SubscriptionData_H*/
65
66