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

@ -7,7 +7,7 @@
OpenAPI_complex_query_t *OpenAPI_complex_query_create(
OpenAPI_list_t *cnf_units,
OpenAPI_list_t *dnf_units
)
)
{
OpenAPI_complex_query_t *complex_query_local_var = OpenAPI_malloc(sizeof(OpenAPI_complex_query_t));
if (!complex_query_local_var) {
@ -96,9 +96,9 @@ OpenAPI_complex_query_t *OpenAPI_complex_query_parseFromJSON(cJSON *complex_quer
}
OpenAPI_list_t *cnf_unitsList;
cJSON *cnf_units_local_nonprimitive;
if (!cJSON_IsArray(cnf_units)) {
if (!cJSON_IsArray(cnf_units)){
ogs_error("OpenAPI_complex_query_parseFromJSON() failed [cnf_units]");
goto end;
}
@ -122,9 +122,9 @@ OpenAPI_complex_query_t *OpenAPI_complex_query_parseFromJSON(cJSON *complex_quer
}
OpenAPI_list_t *dnf_unitsList;
cJSON *dnf_units_local_nonprimitive;
if (!cJSON_IsArray(dnf_units)) {
if (!cJSON_IsArray(dnf_units)){
ogs_error("OpenAPI_complex_query_parseFromJSON() failed [dnf_units]");
goto end;
}
@ -144,7 +144,7 @@ OpenAPI_complex_query_t *OpenAPI_complex_query_parseFromJSON(cJSON *complex_quer
complex_query_local_var = OpenAPI_complex_query_create (
cnf_unitsList,
dnf_unitsList
);
);
return complex_query_local_var;
end: