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 @@
/*
* service_area_restriction.h
*
*
*
*/
#ifndef _OpenAPI_service_area_restriction_H_
@ -23,16 +23,16 @@ typedef struct OpenAPI_service_area_restriction_s OpenAPI_service_area_restricti
typedef struct OpenAPI_service_area_restriction_s {
OpenAPI_restriction_type_e restriction_type;
OpenAPI_list_t *areas;
int max_num_of_t_as;
int max_num_of_t_as_for_not_allowed_areas;
int max_num_of_tas;
int max_num_of_tas_for_not_allowed_areas;
} OpenAPI_service_area_restriction_t;
OpenAPI_service_area_restriction_t *OpenAPI_service_area_restriction_create(
OpenAPI_restriction_type_e restriction_type,
OpenAPI_list_t *areas,
int max_num_of_t_as,
int max_num_of_t_as_for_not_allowed_areas
);
int max_num_of_tas,
int max_num_of_tas_for_not_allowed_areas
);
void OpenAPI_service_area_restriction_free(OpenAPI_service_area_restriction_t *service_area_restriction);
OpenAPI_service_area_restriction_t *OpenAPI_service_area_restriction_parseFromJSON(cJSON *service_area_restrictionJSON);
cJSON *OpenAPI_service_area_restriction_convertToJSON(OpenAPI_service_area_restriction_t *service_area_restriction);