SBI updated

- openapi-generator version 5.2.0
- add priority/capacity/load in NFProfile/NFService
- add AllowedNfTypes in NFProfile/NFService
This commit is contained in:
Sukchan Lee 2021-07-16 17:02:33 +09:00
parent 1326fc85dc
commit 039b9d0aaa
930 changed files with 7387 additions and 5434 deletions

View file

@ -23,14 +23,18 @@ 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;
bool is_max_num_of_tas;
int max_num_of_tas;
bool is_max_num_of_tas_for_not_allowed_areas;
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,
bool is_max_num_of_tas,
int max_num_of_tas,
bool is_max_num_of_tas_for_not_allowed_areas,
int max_num_of_tas_for_not_allowed_areas
);
void OpenAPI_service_area_restriction_free(OpenAPI_service_area_restriction_t *service_area_restriction);