open5gs/lib/sbi/openapi/model/an_node_type.h

37 lines
891 B
C
Raw Normal View History

2020-06-04 18:12:05 +00:00
/*
* an_node_type.h
*
*
*/
#ifndef _OpenAPI_an_node_type_H_
#define _OpenAPI_an_node_type_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_an_node_type_s OpenAPI_an_node_type_t;
typedef struct OpenAPI_an_node_type_s {
} OpenAPI_an_node_type_t;
OpenAPI_an_node_type_t *OpenAPI_an_node_type_create(
);
void OpenAPI_an_node_type_free(OpenAPI_an_node_type_t *an_node_type);
OpenAPI_an_node_type_t *OpenAPI_an_node_type_parseFromJSON(cJSON *an_node_typeJSON);
cJSON *OpenAPI_an_node_type_convertToJSON(OpenAPI_an_node_type_t *an_node_type);
2020-06-17 05:22:28 +00:00
OpenAPI_an_node_type_t *OpenAPI_an_node_type_copy(OpenAPI_an_node_type_t *dst, OpenAPI_an_node_type_t *src);
2020-06-04 18:12:05 +00:00
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_an_node_type_H_ */