80921733edbeff4f8d91a5a6f3ba8a89bacc7759
[ric-app/hw.git] / src / xapp-mgmt / format_helper.hpp
1 /*
2 ==================================================================================
3
4         Copyright (c) 2018-2019 AT&T Intellectual Property.
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 */
19 /*
20  * a1_policy.hpp
21  *
22  *  Created on: Mar, 2020
23  *  Author: Shraboni Jana
24  */
25
26 #ifndef SRC_XAPP_MGMT_A1MSG_A1_POLICY_HELPER_HPP_
27 #define SRC_XAPP_MGMT_A1MSG_A1_POLICY_HELPER_HPP_
28
29 #include <rapidjson/document.h>
30 #include <rapidjson/writer.h>
31 #include <rapidjson/stringbuffer.h>
32 #include <rapidjson/schema.h>
33
34 using namespace rapidjson;
35
36 typedef struct a1_policy_helper a1_policy_helper;
37
38 struct a1_policy_helper{
39
40         std::string operation;
41         std::string policy_type_id;
42         std::string policy_instance_id;
43         std::string handler_id;
44         std::string status;
45
46 };
47
48
49 #endif /* SRC_XAPP_FORMATS_A1MSG_A1_POLICY_HELPER_HPP_ */