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

@ -9,7 +9,7 @@ OpenAPI_qos_flow_item_t *OpenAPI_qos_flow_item_create(
OpenAPI_cause_e cause,
int current_qos_profile_index,
int null_qo_s_profile_index
)
)
{
OpenAPI_qos_flow_item_t *qos_flow_item_local_var = OpenAPI_malloc(sizeof(OpenAPI_qos_flow_item_t));
if (!qos_flow_item_local_var) {
@ -48,24 +48,24 @@ cJSON *OpenAPI_qos_flow_item_convertToJSON(OpenAPI_qos_flow_item_t *qos_flow_ite
}
if (qos_flow_item->cause) {
if (cJSON_AddStringToObject(item, "cause", OpenAPI_cause_ToString(qos_flow_item->cause)) == NULL) {
ogs_error("OpenAPI_qos_flow_item_convertToJSON() failed [cause]");
goto end;
}
if (cJSON_AddStringToObject(item, "cause", OpenAPI_cause_ToString(qos_flow_item->cause)) == NULL) {
ogs_error("OpenAPI_qos_flow_item_convertToJSON() failed [cause]");
goto end;
}
}
if (qos_flow_item->current_qos_profile_index) {
if (cJSON_AddNumberToObject(item, "currentQosProfileIndex", qos_flow_item->current_qos_profile_index) == NULL) {
ogs_error("OpenAPI_qos_flow_item_convertToJSON() failed [current_qos_profile_index]");
goto end;
}
if (cJSON_AddNumberToObject(item, "currentQosProfileIndex", qos_flow_item->current_qos_profile_index) == NULL) {
ogs_error("OpenAPI_qos_flow_item_convertToJSON() failed [current_qos_profile_index]");
goto end;
}
}
if (qos_flow_item->null_qo_s_profile_index) {
if (cJSON_AddBoolToObject(item, "nullQoSProfileIndex", qos_flow_item->null_qo_s_profile_index) == NULL) {
ogs_error("OpenAPI_qos_flow_item_convertToJSON() failed [null_qo_s_profile_index]");
goto end;
}
if (cJSON_AddBoolToObject(item, "nullQoSProfileIndex", qos_flow_item->null_qo_s_profile_index) == NULL) {
ogs_error("OpenAPI_qos_flow_item_convertToJSON() failed [null_qo_s_profile_index]");
goto end;
}
}
end:
@ -81,7 +81,7 @@ OpenAPI_qos_flow_item_t *OpenAPI_qos_flow_item_parseFromJSON(cJSON *qos_flow_ite
goto end;
}
if (!cJSON_IsNumber(qfi)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [qfi]");
goto end;
@ -90,38 +90,38 @@ OpenAPI_qos_flow_item_t *OpenAPI_qos_flow_item_parseFromJSON(cJSON *qos_flow_ite
cJSON *cause = cJSON_GetObjectItemCaseSensitive(qos_flow_itemJSON, "cause");
OpenAPI_cause_e causeVariable;
if (cause) {
if (!cJSON_IsString(cause)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [cause]");
goto end;
}
causeVariable = OpenAPI_cause_FromString(cause->valuestring);
if (cause) {
if (!cJSON_IsString(cause)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [cause]");
goto end;
}
causeVariable = OpenAPI_cause_FromString(cause->valuestring);
}
cJSON *current_qos_profile_index = cJSON_GetObjectItemCaseSensitive(qos_flow_itemJSON, "currentQosProfileIndex");
if (current_qos_profile_index) {
if (!cJSON_IsNumber(current_qos_profile_index)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [current_qos_profile_index]");
goto end;
}
if (current_qos_profile_index) {
if (!cJSON_IsNumber(current_qos_profile_index)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [current_qos_profile_index]");
goto end;
}
}
cJSON *null_qo_s_profile_index = cJSON_GetObjectItemCaseSensitive(qos_flow_itemJSON, "nullQoSProfileIndex");
if (null_qo_s_profile_index) {
if (!cJSON_IsBool(null_qo_s_profile_index)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [null_qo_s_profile_index]");
goto end;
}
if (null_qo_s_profile_index) {
if (!cJSON_IsBool(null_qo_s_profile_index)) {
ogs_error("OpenAPI_qos_flow_item_parseFromJSON() failed [null_qo_s_profile_index]");
goto end;
}
}
qos_flow_item_local_var = OpenAPI_qos_flow_item_create (
qfi->valuedouble,
cause ? causeVariable : 0,
current_qos_profile_index ? current_qos_profile_index->valuedouble : 0,
null_qo_s_profile_index ? null_qo_s_profile_index->valueint : 0
);
);
return qos_flow_item_local_var;
end: