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

@ -1,7 +1,7 @@
/*
* ue_camping_rep.h
*
*
*
*/
#ifndef _OpenAPI_ue_camping_rep_H_
@ -13,6 +13,7 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "access_type.h"
#include "net_loc_access_support.h"
#include "plmn_id_nid.h"
#include "rat_type.h"
#include "serving_nf_identity.h"
@ -30,6 +31,7 @@ typedef struct OpenAPI_ue_camping_rep_s {
struct OpenAPI_plmn_id_nid_s *serving_network;
struct OpenAPI_user_location_s *user_location_info;
char *ue_time_zone;
OpenAPI_net_loc_access_support_e net_loc_acc_supp;
} OpenAPI_ue_camping_rep_t;
OpenAPI_ue_camping_rep_t *OpenAPI_ue_camping_rep_create(
@ -38,8 +40,9 @@ OpenAPI_ue_camping_rep_t *OpenAPI_ue_camping_rep_create(
OpenAPI_serving_nf_identity_t *serv_nf_id,
OpenAPI_plmn_id_nid_t *serving_network,
OpenAPI_user_location_t *user_location_info,
char *ue_time_zone
);
char *ue_time_zone,
OpenAPI_net_loc_access_support_e net_loc_acc_supp
);
void OpenAPI_ue_camping_rep_free(OpenAPI_ue_camping_rep_t *ue_camping_rep);
OpenAPI_ue_camping_rep_t *OpenAPI_ue_camping_rep_parseFromJSON(cJSON *ue_camping_repJSON);
cJSON *OpenAPI_ue_camping_rep_convertToJSON(OpenAPI_ue_camping_rep_t *ue_camping_rep);