Upgrade SBI(Service-based Interface)

* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
This commit is contained in:
Sukchan Lee 2021-07-07 17:32:55 +09:00
parent 2aaa8200c2
commit f278d58a69
1914 changed files with 91329 additions and 57361 deletions

View file

@ -12,6 +12,7 @@
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "ip_reachability.h"
#include "ipv4_address_range.h"
#include "ipv6_prefix_range.h"
#include "plmn_id.h"
@ -33,6 +34,7 @@ typedef struct OpenAPI_scp_info_s {
OpenAPI_list_t *ipv6_prefix_ranges;
OpenAPI_list_t *served_nf_set_id_list;
OpenAPI_list_t *remote_plmn_list;
OpenAPI_ip_reachability_e ip_reachability;
} OpenAPI_scp_info_t;
OpenAPI_scp_info_t *OpenAPI_scp_info_create(
@ -45,8 +47,9 @@ OpenAPI_scp_info_t *OpenAPI_scp_info_create(
OpenAPI_list_t *ipv4_addr_ranges,
OpenAPI_list_t *ipv6_prefix_ranges,
OpenAPI_list_t *served_nf_set_id_list,
OpenAPI_list_t *remote_plmn_list
);
OpenAPI_list_t *remote_plmn_list,
OpenAPI_ip_reachability_e ip_reachability
);
void OpenAPI_scp_info_free(OpenAPI_scp_info_t *scp_info);
OpenAPI_scp_info_t *OpenAPI_scp_info_parseFromJSON(cJSON *scp_infoJSON);
cJSON *OpenAPI_scp_info_convertToJSON(OpenAPI_scp_info_t *scp_info);