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

@ -74,7 +74,6 @@ OpenAPI_twap_id_t *OpenAPI_twap_id_parseFromJSON(cJSON *twap_idJSON)
goto end;
}
if (!cJSON_IsString(ss_id)) {
ogs_error("OpenAPI_twap_id_parseFromJSON() failed [ss_id]");
goto end;
@ -82,7 +81,7 @@ OpenAPI_twap_id_t *OpenAPI_twap_id_parseFromJSON(cJSON *twap_idJSON)
cJSON *bss_id = cJSON_GetObjectItemCaseSensitive(twap_idJSON, "bssId");
if (bss_id) {
if (bss_id) {
if (!cJSON_IsString(bss_id)) {
ogs_error("OpenAPI_twap_id_parseFromJSON() failed [bss_id]");
goto end;
@ -91,7 +90,7 @@ OpenAPI_twap_id_t *OpenAPI_twap_id_parseFromJSON(cJSON *twap_idJSON)
cJSON *civic_address = cJSON_GetObjectItemCaseSensitive(twap_idJSON, "civicAddress");
if (civic_address) {
if (civic_address) {
if (!cJSON_IsNumber(civic_address)) {
ogs_error("OpenAPI_twap_id_parseFromJSON() failed [civic_address]");
goto end;