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

@ -6,7 +6,7 @@
OpenAPI_polygon_all_of_t *OpenAPI_polygon_all_of_create(
OpenAPI_list_t *point_list
)
)
{
OpenAPI_polygon_all_of_t *polygon_all_of_local_var = OpenAPI_malloc(sizeof(OpenAPI_polygon_all_of_t));
if (!polygon_all_of_local_var) {
@ -72,9 +72,9 @@ OpenAPI_polygon_all_of_t *OpenAPI_polygon_all_of_parseFromJSON(cJSON *polygon_al
}
OpenAPI_list_t *point_listList;
cJSON *point_list_local_nonprimitive;
if (!cJSON_IsArray(point_list)) {
if (!cJSON_IsArray(point_list)){
ogs_error("OpenAPI_polygon_all_of_parseFromJSON() failed [point_list]");
goto end;
}
@ -93,7 +93,7 @@ OpenAPI_polygon_all_of_t *OpenAPI_polygon_all_of_parseFromJSON(cJSON *polygon_al
polygon_all_of_local_var = OpenAPI_polygon_all_of_create (
point_listList
);
);
return polygon_all_of_local_var;
end: