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

37 lines
1.2 KiB
C
Raw Normal View History

2020-06-04 18:12:05 +00:00
/*
* scheduled_communication_type.h
*
*
*/
#ifndef _OpenAPI_scheduled_communication_type_H_
#define _OpenAPI_scheduled_communication_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_scheduled_communication_type_s OpenAPI_scheduled_communication_type_t;
typedef struct OpenAPI_scheduled_communication_type_s {
} OpenAPI_scheduled_communication_type_t;
OpenAPI_scheduled_communication_type_t *OpenAPI_scheduled_communication_type_create(
);
void OpenAPI_scheduled_communication_type_free(OpenAPI_scheduled_communication_type_t *scheduled_communication_type);
OpenAPI_scheduled_communication_type_t *OpenAPI_scheduled_communication_type_parseFromJSON(cJSON *scheduled_communication_typeJSON);
cJSON *OpenAPI_scheduled_communication_type_convertToJSON(OpenAPI_scheduled_communication_type_t *scheduled_communication_type);
2020-06-17 05:22:28 +00:00
OpenAPI_scheduled_communication_type_t *OpenAPI_scheduled_communication_type_copy(OpenAPI_scheduled_communication_type_t *dst, OpenAPI_scheduled_communication_type_t *src);
2020-06-04 18:12:05 +00:00
#ifdef __cplusplus
}
#endif
#endif /* _OpenAPI_scheduled_communication_type_H_ */