open5gs/lib/sbi/support/r16-20210629-openapitools-5.2.0/openapi-generator/templates/object-header.mustache
Sukchan Lee ce668c556c [SBI] Fixed openapitools MAP generation (#2103)
MAP was generated incorrectly because {{#items}}..{{#items}} was
missing.

Because of this, If scpInfo has scpPort, NRF crashes.
2023-02-26 10:01:08 +09:00

30 lines
608 B
Text

#ifndef OGS_SBI_OBJECT_H
#define OGS_SBI_OBJECT_H
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OpenAPI_object_s {
void *temporary;
} OpenAPI_object_t;
OpenAPI_object_t *OpenAPI_object_create(void);
void OpenAPI_object_free(OpenAPI_object_t *object);
OpenAPI_object_t *OpenAPI_object_parseFromJSON(cJSON *objectJSON);
cJSON *OpenAPI_object_convertToJSON(OpenAPI_object_t *object);
#ifdef __cplusplus
}
#endif
#endif /* OGS_SBI_OBJECT_H */