mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
Upgrade SBI(Service-based Interface)
* OpenAPI Generator version: 4.3.1 ==> 5.5.1 * Specification : r16.8.0 (20210629)
This commit is contained in:
parent
2aaa8200c2
commit
f278d58a69
1914 changed files with 91329 additions and 57361 deletions
|
|
@ -23,7 +23,7 @@ OpenAPI_inline_object_t *OpenAPI_inline_object_create(
|
|||
OpenAPI_binary_t* binary_data_n2_information_ext14,
|
||||
OpenAPI_binary_t* binary_data_n2_information_ext15,
|
||||
OpenAPI_binary_t* binary_data_n2_information_ext16
|
||||
)
|
||||
)
|
||||
{
|
||||
OpenAPI_inline_object_t *inline_object_local_var = OpenAPI_malloc(sizeof(OpenAPI_inline_object_t));
|
||||
if (!inline_object_local_var) {
|
||||
|
|
@ -89,169 +89,169 @@ cJSON *OpenAPI_inline_object_convertToJSON(OpenAPI_inline_object_t *inline_objec
|
|||
|
||||
item = cJSON_CreateObject();
|
||||
if (inline_object->json_data) {
|
||||
cJSON *json_data_local_JSON = OpenAPI_ue_context_create_data_convertToJSON(inline_object->json_data);
|
||||
if (json_data_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "jsonData", json_data_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
cJSON *json_data_local_JSON = OpenAPI_ue_context_create_data_convertToJSON(inline_object->json_data);
|
||||
if (json_data_local_JSON == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToObject(item, "jsonData", json_data_local_JSON);
|
||||
if (item->child == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [json_data]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information) {
|
||||
char* encoded_str_binary_data_n2_information = OpenAPI_base64encode(inline_object->binary_data_n2_information->data,inline_object->binary_data_n2_information->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2Information", encoded_str_binary_data_n2_information) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information);
|
||||
char* encoded_str_binary_data_n2_information = OpenAPI_base64encode(inline_object->binary_data_n2_information->data,inline_object->binary_data_n2_information->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2Information", encoded_str_binary_data_n2_information) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext1) {
|
||||
char* encoded_str_binary_data_n2_information_ext1 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext1->data,inline_object->binary_data_n2_information_ext1->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt1", encoded_str_binary_data_n2_information_ext1) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext1]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext1);
|
||||
char* encoded_str_binary_data_n2_information_ext1 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext1->data,inline_object->binary_data_n2_information_ext1->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt1", encoded_str_binary_data_n2_information_ext1) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext1]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext1);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext2) {
|
||||
char* encoded_str_binary_data_n2_information_ext2 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext2->data,inline_object->binary_data_n2_information_ext2->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt2", encoded_str_binary_data_n2_information_ext2) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext2]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext2);
|
||||
char* encoded_str_binary_data_n2_information_ext2 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext2->data,inline_object->binary_data_n2_information_ext2->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt2", encoded_str_binary_data_n2_information_ext2) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext2]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext2);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext3) {
|
||||
char* encoded_str_binary_data_n2_information_ext3 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext3->data,inline_object->binary_data_n2_information_ext3->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt3", encoded_str_binary_data_n2_information_ext3) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext3]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext3);
|
||||
char* encoded_str_binary_data_n2_information_ext3 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext3->data,inline_object->binary_data_n2_information_ext3->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt3", encoded_str_binary_data_n2_information_ext3) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext3]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext3);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext4) {
|
||||
char* encoded_str_binary_data_n2_information_ext4 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext4->data,inline_object->binary_data_n2_information_ext4->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt4", encoded_str_binary_data_n2_information_ext4) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext4]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext4);
|
||||
char* encoded_str_binary_data_n2_information_ext4 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext4->data,inline_object->binary_data_n2_information_ext4->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt4", encoded_str_binary_data_n2_information_ext4) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext4]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext4);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext5) {
|
||||
char* encoded_str_binary_data_n2_information_ext5 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext5->data,inline_object->binary_data_n2_information_ext5->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt5", encoded_str_binary_data_n2_information_ext5) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext5]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext5);
|
||||
char* encoded_str_binary_data_n2_information_ext5 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext5->data,inline_object->binary_data_n2_information_ext5->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt5", encoded_str_binary_data_n2_information_ext5) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext5]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext5);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext6) {
|
||||
char* encoded_str_binary_data_n2_information_ext6 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext6->data,inline_object->binary_data_n2_information_ext6->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt6", encoded_str_binary_data_n2_information_ext6) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext6]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext6);
|
||||
char* encoded_str_binary_data_n2_information_ext6 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext6->data,inline_object->binary_data_n2_information_ext6->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt6", encoded_str_binary_data_n2_information_ext6) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext6]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext6);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext7) {
|
||||
char* encoded_str_binary_data_n2_information_ext7 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext7->data,inline_object->binary_data_n2_information_ext7->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt7", encoded_str_binary_data_n2_information_ext7) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext7]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext7);
|
||||
char* encoded_str_binary_data_n2_information_ext7 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext7->data,inline_object->binary_data_n2_information_ext7->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt7", encoded_str_binary_data_n2_information_ext7) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext7]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext7);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext8) {
|
||||
char* encoded_str_binary_data_n2_information_ext8 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext8->data,inline_object->binary_data_n2_information_ext8->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt8", encoded_str_binary_data_n2_information_ext8) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext8]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext8);
|
||||
char* encoded_str_binary_data_n2_information_ext8 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext8->data,inline_object->binary_data_n2_information_ext8->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt8", encoded_str_binary_data_n2_information_ext8) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext8]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext8);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext9) {
|
||||
char* encoded_str_binary_data_n2_information_ext9 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext9->data,inline_object->binary_data_n2_information_ext9->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt9", encoded_str_binary_data_n2_information_ext9) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext9]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext9);
|
||||
char* encoded_str_binary_data_n2_information_ext9 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext9->data,inline_object->binary_data_n2_information_ext9->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt9", encoded_str_binary_data_n2_information_ext9) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext9]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext9);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext10) {
|
||||
char* encoded_str_binary_data_n2_information_ext10 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext10->data,inline_object->binary_data_n2_information_ext10->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt10", encoded_str_binary_data_n2_information_ext10) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext10]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext10);
|
||||
char* encoded_str_binary_data_n2_information_ext10 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext10->data,inline_object->binary_data_n2_information_ext10->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt10", encoded_str_binary_data_n2_information_ext10) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext10]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext10);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext11) {
|
||||
char* encoded_str_binary_data_n2_information_ext11 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext11->data,inline_object->binary_data_n2_information_ext11->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt11", encoded_str_binary_data_n2_information_ext11) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext11]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext11);
|
||||
char* encoded_str_binary_data_n2_information_ext11 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext11->data,inline_object->binary_data_n2_information_ext11->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt11", encoded_str_binary_data_n2_information_ext11) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext11]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext11);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext12) {
|
||||
char* encoded_str_binary_data_n2_information_ext12 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext12->data,inline_object->binary_data_n2_information_ext12->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt12", encoded_str_binary_data_n2_information_ext12) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext12]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext12);
|
||||
char* encoded_str_binary_data_n2_information_ext12 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext12->data,inline_object->binary_data_n2_information_ext12->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt12", encoded_str_binary_data_n2_information_ext12) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext12]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext12);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext13) {
|
||||
char* encoded_str_binary_data_n2_information_ext13 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext13->data,inline_object->binary_data_n2_information_ext13->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt13", encoded_str_binary_data_n2_information_ext13) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext13]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext13);
|
||||
char* encoded_str_binary_data_n2_information_ext13 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext13->data,inline_object->binary_data_n2_information_ext13->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt13", encoded_str_binary_data_n2_information_ext13) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext13]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext13);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext14) {
|
||||
char* encoded_str_binary_data_n2_information_ext14 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext14->data,inline_object->binary_data_n2_information_ext14->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt14", encoded_str_binary_data_n2_information_ext14) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext14]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext14);
|
||||
char* encoded_str_binary_data_n2_information_ext14 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext14->data,inline_object->binary_data_n2_information_ext14->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt14", encoded_str_binary_data_n2_information_ext14) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext14]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext14);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext15) {
|
||||
char* encoded_str_binary_data_n2_information_ext15 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext15->data,inline_object->binary_data_n2_information_ext15->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt15", encoded_str_binary_data_n2_information_ext15) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext15]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext15);
|
||||
char* encoded_str_binary_data_n2_information_ext15 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext15->data,inline_object->binary_data_n2_information_ext15->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt15", encoded_str_binary_data_n2_information_ext15) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext15]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext15);
|
||||
}
|
||||
|
||||
if (inline_object->binary_data_n2_information_ext16) {
|
||||
char* encoded_str_binary_data_n2_information_ext16 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext16->data,inline_object->binary_data_n2_information_ext16->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt16", encoded_str_binary_data_n2_information_ext16) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext16]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext16);
|
||||
char* encoded_str_binary_data_n2_information_ext16 = OpenAPI_base64encode(inline_object->binary_data_n2_information_ext16->data,inline_object->binary_data_n2_information_ext16->len);
|
||||
if (cJSON_AddStringToObject(item, "binaryDataN2InformationExt16", encoded_str_binary_data_n2_information_ext16) == NULL) {
|
||||
ogs_error("OpenAPI_inline_object_convertToJSON() failed [binary_data_n2_information_ext16]");
|
||||
goto end;
|
||||
}
|
||||
ogs_free(encoded_str_binary_data_n2_information_ext16);
|
||||
}
|
||||
|
||||
end:
|
||||
|
|
@ -264,264 +264,264 @@ OpenAPI_inline_object_t *OpenAPI_inline_object_parseFromJSON(cJSON *inline_objec
|
|||
cJSON *json_data = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "jsonData");
|
||||
|
||||
OpenAPI_ue_context_create_data_t *json_data_local_nonprim = NULL;
|
||||
if (json_data) {
|
||||
json_data_local_nonprim = OpenAPI_ue_context_create_data_parseFromJSON(json_data);
|
||||
}
|
||||
if (json_data) {
|
||||
json_data_local_nonprim = OpenAPI_ue_context_create_data_parseFromJSON(json_data);
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2Information");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information) {
|
||||
if (!cJSON_IsString(binary_data_n2_information)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information->data = OpenAPI_base64decode(binary_data_n2_information->valuestring, strlen(binary_data_n2_information->valuestring), &decoded_str_binary_data_n2_information->len);
|
||||
if (!decoded_str_binary_data_n2_information->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information) {
|
||||
if (!cJSON_IsString(binary_data_n2_information)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information->data = OpenAPI_base64decode(binary_data_n2_information->valuestring, strlen(binary_data_n2_information->valuestring), &decoded_str_binary_data_n2_information->len);
|
||||
if (!decoded_str_binary_data_n2_information->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext1 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt1");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext1 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext1) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext1)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext1]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext1->data = OpenAPI_base64decode(binary_data_n2_information_ext1->valuestring, strlen(binary_data_n2_information_ext1->valuestring), &decoded_str_binary_data_n2_information_ext1->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext1->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext1]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext1) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext1)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext1]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext1->data = OpenAPI_base64decode(binary_data_n2_information_ext1->valuestring, strlen(binary_data_n2_information_ext1->valuestring), &decoded_str_binary_data_n2_information_ext1->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext1->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext1]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext2 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt2");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext2 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext2) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext2)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext2]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext2->data = OpenAPI_base64decode(binary_data_n2_information_ext2->valuestring, strlen(binary_data_n2_information_ext2->valuestring), &decoded_str_binary_data_n2_information_ext2->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext2->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext2]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext2) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext2)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext2]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext2->data = OpenAPI_base64decode(binary_data_n2_information_ext2->valuestring, strlen(binary_data_n2_information_ext2->valuestring), &decoded_str_binary_data_n2_information_ext2->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext2->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext2]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext3 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt3");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext3 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext3) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext3)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext3]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext3->data = OpenAPI_base64decode(binary_data_n2_information_ext3->valuestring, strlen(binary_data_n2_information_ext3->valuestring), &decoded_str_binary_data_n2_information_ext3->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext3->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext3]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext3) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext3)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext3]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext3->data = OpenAPI_base64decode(binary_data_n2_information_ext3->valuestring, strlen(binary_data_n2_information_ext3->valuestring), &decoded_str_binary_data_n2_information_ext3->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext3->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext3]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext4 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt4");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext4 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext4) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext4)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext4]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext4->data = OpenAPI_base64decode(binary_data_n2_information_ext4->valuestring, strlen(binary_data_n2_information_ext4->valuestring), &decoded_str_binary_data_n2_information_ext4->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext4->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext4]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext4) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext4)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext4]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext4->data = OpenAPI_base64decode(binary_data_n2_information_ext4->valuestring, strlen(binary_data_n2_information_ext4->valuestring), &decoded_str_binary_data_n2_information_ext4->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext4->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext4]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext5 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt5");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext5 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext5) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext5)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext5]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext5->data = OpenAPI_base64decode(binary_data_n2_information_ext5->valuestring, strlen(binary_data_n2_information_ext5->valuestring), &decoded_str_binary_data_n2_information_ext5->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext5->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext5]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext5) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext5)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext5]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext5->data = OpenAPI_base64decode(binary_data_n2_information_ext5->valuestring, strlen(binary_data_n2_information_ext5->valuestring), &decoded_str_binary_data_n2_information_ext5->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext5->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext5]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext6 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt6");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext6 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext6) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext6)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext6]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext6->data = OpenAPI_base64decode(binary_data_n2_information_ext6->valuestring, strlen(binary_data_n2_information_ext6->valuestring), &decoded_str_binary_data_n2_information_ext6->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext6->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext6]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext6) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext6)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext6]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext6->data = OpenAPI_base64decode(binary_data_n2_information_ext6->valuestring, strlen(binary_data_n2_information_ext6->valuestring), &decoded_str_binary_data_n2_information_ext6->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext6->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext6]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext7 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt7");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext7 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext7) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext7)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext7]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext7->data = OpenAPI_base64decode(binary_data_n2_information_ext7->valuestring, strlen(binary_data_n2_information_ext7->valuestring), &decoded_str_binary_data_n2_information_ext7->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext7->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext7]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext7) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext7)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext7]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext7->data = OpenAPI_base64decode(binary_data_n2_information_ext7->valuestring, strlen(binary_data_n2_information_ext7->valuestring), &decoded_str_binary_data_n2_information_ext7->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext7->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext7]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext8 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt8");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext8 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext8) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext8)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext8]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext8->data = OpenAPI_base64decode(binary_data_n2_information_ext8->valuestring, strlen(binary_data_n2_information_ext8->valuestring), &decoded_str_binary_data_n2_information_ext8->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext8->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext8]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext8) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext8)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext8]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext8->data = OpenAPI_base64decode(binary_data_n2_information_ext8->valuestring, strlen(binary_data_n2_information_ext8->valuestring), &decoded_str_binary_data_n2_information_ext8->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext8->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext8]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext9 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt9");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext9 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext9) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext9)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext9]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext9->data = OpenAPI_base64decode(binary_data_n2_information_ext9->valuestring, strlen(binary_data_n2_information_ext9->valuestring), &decoded_str_binary_data_n2_information_ext9->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext9->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext9]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext9) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext9)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext9]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext9->data = OpenAPI_base64decode(binary_data_n2_information_ext9->valuestring, strlen(binary_data_n2_information_ext9->valuestring), &decoded_str_binary_data_n2_information_ext9->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext9->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext9]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext10 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt10");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext10 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext10) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext10)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext10]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext10->data = OpenAPI_base64decode(binary_data_n2_information_ext10->valuestring, strlen(binary_data_n2_information_ext10->valuestring), &decoded_str_binary_data_n2_information_ext10->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext10->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext10]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext10) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext10)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext10]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext10->data = OpenAPI_base64decode(binary_data_n2_information_ext10->valuestring, strlen(binary_data_n2_information_ext10->valuestring), &decoded_str_binary_data_n2_information_ext10->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext10->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext10]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext11 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt11");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext11 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext11) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext11)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext11]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext11->data = OpenAPI_base64decode(binary_data_n2_information_ext11->valuestring, strlen(binary_data_n2_information_ext11->valuestring), &decoded_str_binary_data_n2_information_ext11->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext11->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext11]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext11) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext11)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext11]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext11->data = OpenAPI_base64decode(binary_data_n2_information_ext11->valuestring, strlen(binary_data_n2_information_ext11->valuestring), &decoded_str_binary_data_n2_information_ext11->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext11->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext11]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext12 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt12");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext12 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext12) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext12)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext12]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext12->data = OpenAPI_base64decode(binary_data_n2_information_ext12->valuestring, strlen(binary_data_n2_information_ext12->valuestring), &decoded_str_binary_data_n2_information_ext12->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext12->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext12]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext12) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext12)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext12]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext12->data = OpenAPI_base64decode(binary_data_n2_information_ext12->valuestring, strlen(binary_data_n2_information_ext12->valuestring), &decoded_str_binary_data_n2_information_ext12->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext12->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext12]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext13 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt13");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext13 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext13) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext13)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext13]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext13->data = OpenAPI_base64decode(binary_data_n2_information_ext13->valuestring, strlen(binary_data_n2_information_ext13->valuestring), &decoded_str_binary_data_n2_information_ext13->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext13->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext13]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext13) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext13)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext13]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext13->data = OpenAPI_base64decode(binary_data_n2_information_ext13->valuestring, strlen(binary_data_n2_information_ext13->valuestring), &decoded_str_binary_data_n2_information_ext13->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext13->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext13]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext14 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt14");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext14 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext14) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext14)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext14]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext14->data = OpenAPI_base64decode(binary_data_n2_information_ext14->valuestring, strlen(binary_data_n2_information_ext14->valuestring), &decoded_str_binary_data_n2_information_ext14->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext14->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext14]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext14) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext14)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext14]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext14->data = OpenAPI_base64decode(binary_data_n2_information_ext14->valuestring, strlen(binary_data_n2_information_ext14->valuestring), &decoded_str_binary_data_n2_information_ext14->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext14->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext14]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext15 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt15");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext15 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext15) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext15)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext15]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext15->data = OpenAPI_base64decode(binary_data_n2_information_ext15->valuestring, strlen(binary_data_n2_information_ext15->valuestring), &decoded_str_binary_data_n2_information_ext15->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext15->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext15]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext15) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext15)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext15]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext15->data = OpenAPI_base64decode(binary_data_n2_information_ext15->valuestring, strlen(binary_data_n2_information_ext15->valuestring), &decoded_str_binary_data_n2_information_ext15->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext15->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext15]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *binary_data_n2_information_ext16 = cJSON_GetObjectItemCaseSensitive(inline_objectJSON, "binaryDataN2InformationExt16");
|
||||
|
||||
OpenAPI_binary_t* decoded_str_binary_data_n2_information_ext16 = OpenAPI_malloc(sizeof(OpenAPI_binary_t));
|
||||
if (binary_data_n2_information_ext16) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext16)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext16]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext16->data = OpenAPI_base64decode(binary_data_n2_information_ext16->valuestring, strlen(binary_data_n2_information_ext16->valuestring), &decoded_str_binary_data_n2_information_ext16->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext16->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext16]");
|
||||
goto end;
|
||||
}
|
||||
if (binary_data_n2_information_ext16) {
|
||||
if (!cJSON_IsString(binary_data_n2_information_ext16)) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext16]");
|
||||
goto end;
|
||||
}
|
||||
decoded_str_binary_data_n2_information_ext16->data = OpenAPI_base64decode(binary_data_n2_information_ext16->valuestring, strlen(binary_data_n2_information_ext16->valuestring), &decoded_str_binary_data_n2_information_ext16->len);
|
||||
if (!decoded_str_binary_data_n2_information_ext16->data) {
|
||||
ogs_error("OpenAPI_inline_object_parseFromJSON() failed [binary_data_n2_information_ext16]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
inline_object_local_var = OpenAPI_inline_object_create (
|
||||
json_data ? json_data_local_nonprim : NULL,
|
||||
|
|
@ -542,7 +542,7 @@ OpenAPI_inline_object_t *OpenAPI_inline_object_parseFromJSON(cJSON *inline_objec
|
|||
binary_data_n2_information_ext14 ? decoded_str_binary_data_n2_information_ext14 : NULL,
|
||||
binary_data_n2_information_ext15 ? decoded_str_binary_data_n2_information_ext15 : NULL,
|
||||
binary_data_n2_information_ext16 ? decoded_str_binary_data_n2_information_ext16 : NULL
|
||||
);
|
||||
);
|
||||
|
||||
return inline_object_local_var;
|
||||
end:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue