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

@ -79,7 +79,7 @@ OpenAPI_wireline_service_area_restriction_t *OpenAPI_wireline_service_area_restr
cJSON *restriction_type = cJSON_GetObjectItemCaseSensitive(wireline_service_area_restrictionJSON, "restrictionType");
OpenAPI_restriction_type_e restriction_typeVariable;
if (restriction_type) {
if (restriction_type) {
if (!cJSON_IsString(restriction_type)) {
ogs_error("OpenAPI_wireline_service_area_restriction_parseFromJSON() failed [restriction_type]");
goto end;
@ -90,7 +90,7 @@ OpenAPI_wireline_service_area_restriction_t *OpenAPI_wireline_service_area_restr
cJSON *areas = cJSON_GetObjectItemCaseSensitive(wireline_service_area_restrictionJSON, "areas");
OpenAPI_list_t *areasList;
if (areas) {
if (areas) {
cJSON *areas_local_nonprimitive;
if (!cJSON_IsArray(areas)){
ogs_error("OpenAPI_wireline_service_area_restriction_parseFromJSON() failed [areas]");