open5gs/lib/sbi/openapi/model/stationary_indication_rm.c

88 lines
2.3 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "stationary_indication_rm.h"
OpenAPI_stationary_indication_rm_t *OpenAPI_stationary_indication_rm_create(
)
{
OpenAPI_stationary_indication_rm_t *stationary_indication_rm_local_var = ogs_malloc(sizeof(OpenAPI_stationary_indication_rm_t));
ogs_assert(stationary_indication_rm_local_var);
return stationary_indication_rm_local_var;
}
void OpenAPI_stationary_indication_rm_free(OpenAPI_stationary_indication_rm_t *stationary_indication_rm)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == stationary_indication_rm) {
return;
}
ogs_free(stationary_indication_rm);
}
cJSON *OpenAPI_stationary_indication_rm_convertToJSON(OpenAPI_stationary_indication_rm_t *stationary_indication_rm)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (stationary_indication_rm == NULL) {
ogs_error("OpenAPI_stationary_indication_rm_convertToJSON() failed [StationaryIndicationRm]");
return NULL;
}
item = cJSON_CreateObject();
end:
return item;
}
OpenAPI_stationary_indication_rm_t *OpenAPI_stationary_indication_rm_parseFromJSON(cJSON *stationary_indication_rmJSON)
{
OpenAPI_stationary_indication_rm_t *stationary_indication_rm_local_var = NULL;
OpenAPI_lnode_t *node = NULL;
stationary_indication_rm_local_var = OpenAPI_stationary_indication_rm_create (
);
return stationary_indication_rm_local_var;
end:
return NULL;
}
OpenAPI_stationary_indication_rm_t *OpenAPI_stationary_indication_rm_copy(OpenAPI_stationary_indication_rm_t *dst, OpenAPI_stationary_indication_rm_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_stationary_indication_rm_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_stationary_indication_rm_convertToJSON() failed");
return NULL;
}
content = cJSON_Print(item);
cJSON_Delete(item);
if (!content) {
ogs_error("cJSON_Print() failed");
return NULL;
}
item = cJSON_Parse(content);
ogs_free(content);
if (!item) {
ogs_error("cJSON_Parse() failed");
return NULL;
}
OpenAPI_stationary_indication_rm_free(dst);
dst = OpenAPI_stationary_indication_rm_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}