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

@ -19,15 +19,22 @@ extern "C" {
#endif
typedef struct OpenAPI_upf_cond_s OpenAPI_upf_cond_t;
typedef enum { OpenAPI_upf_cond_CONDITIONTYPE_NULL = 0, OpenAPI_upf_cond_CONDITIONTYPE_UPF_COND } OpenAPI_upf_cond_condition_type_e;
char* OpenAPI_upf_cond_condition_type_ToString(OpenAPI_upf_cond_condition_type_e condition_type);
OpenAPI_upf_cond_condition_type_e OpenAPI_upf_cond_condition_type_FromString(char* condition_type);
typedef struct OpenAPI_upf_cond_s {
OpenAPI_upf_cond_condition_type_e condition_type;
OpenAPI_list_t *smf_serving_area;
OpenAPI_list_t *tai_list;
} OpenAPI_upf_cond_t;
OpenAPI_upf_cond_t *OpenAPI_upf_cond_create(
OpenAPI_upf_cond_condition_type_e condition_type,
OpenAPI_list_t *smf_serving_area,
OpenAPI_list_t *tai_list
);
);
void OpenAPI_upf_cond_free(OpenAPI_upf_cond_t *upf_cond);
OpenAPI_upf_cond_t *OpenAPI_upf_cond_parseFromJSON(cJSON *upf_condJSON);
cJSON *OpenAPI_upf_cond_convertToJSON(OpenAPI_upf_cond_t *upf_cond);