mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
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:
parent
1326fc85dc
commit
039b9d0aaa
930 changed files with 7387 additions and 5434 deletions
|
|
@ -103,7 +103,6 @@ OpenAPI_charging_information_t *OpenAPI_charging_information_parseFromJSON(cJSON
|
|||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsString(primary_chf_address)) {
|
||||
ogs_error("OpenAPI_charging_information_parseFromJSON() failed [primary_chf_address]");
|
||||
goto end;
|
||||
|
|
@ -115,7 +114,6 @@ OpenAPI_charging_information_t *OpenAPI_charging_information_parseFromJSON(cJSON
|
|||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsString(secondary_chf_address)) {
|
||||
ogs_error("OpenAPI_charging_information_parseFromJSON() failed [secondary_chf_address]");
|
||||
goto end;
|
||||
|
|
@ -123,7 +121,7 @@ OpenAPI_charging_information_t *OpenAPI_charging_information_parseFromJSON(cJSON
|
|||
|
||||
cJSON *primary_chf_set_id = cJSON_GetObjectItemCaseSensitive(charging_informationJSON, "primaryChfSetId");
|
||||
|
||||
if (primary_chf_set_id) {
|
||||
if (primary_chf_set_id) {
|
||||
if (!cJSON_IsString(primary_chf_set_id)) {
|
||||
ogs_error("OpenAPI_charging_information_parseFromJSON() failed [primary_chf_set_id]");
|
||||
goto end;
|
||||
|
|
@ -132,7 +130,7 @@ OpenAPI_charging_information_t *OpenAPI_charging_information_parseFromJSON(cJSON
|
|||
|
||||
cJSON *primary_chf_instance_id = cJSON_GetObjectItemCaseSensitive(charging_informationJSON, "primaryChfInstanceId");
|
||||
|
||||
if (primary_chf_instance_id) {
|
||||
if (primary_chf_instance_id) {
|
||||
if (!cJSON_IsString(primary_chf_instance_id)) {
|
||||
ogs_error("OpenAPI_charging_information_parseFromJSON() failed [primary_chf_instance_id]");
|
||||
goto end;
|
||||
|
|
@ -141,7 +139,7 @@ OpenAPI_charging_information_t *OpenAPI_charging_information_parseFromJSON(cJSON
|
|||
|
||||
cJSON *secondary_chf_set_id = cJSON_GetObjectItemCaseSensitive(charging_informationJSON, "secondaryChfSetId");
|
||||
|
||||
if (secondary_chf_set_id) {
|
||||
if (secondary_chf_set_id) {
|
||||
if (!cJSON_IsString(secondary_chf_set_id)) {
|
||||
ogs_error("OpenAPI_charging_information_parseFromJSON() failed [secondary_chf_set_id]");
|
||||
goto end;
|
||||
|
|
@ -150,7 +148,7 @@ OpenAPI_charging_information_t *OpenAPI_charging_information_parseFromJSON(cJSON
|
|||
|
||||
cJSON *secondary_chf_instance_id = cJSON_GetObjectItemCaseSensitive(charging_informationJSON, "secondaryChfInstanceId");
|
||||
|
||||
if (secondary_chf_instance_id) {
|
||||
if (secondary_chf_instance_id) {
|
||||
if (!cJSON_IsString(secondary_chf_instance_id)) {
|
||||
ogs_error("OpenAPI_charging_information_parseFromJSON() failed [secondary_chf_instance_id]");
|
||||
goto end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue