/* * scheduled_communication_time_rm.h * * This data type is defined in the same way as the 'ScheduledCommunicationTime' data type, but with the OpenAPI 'nullable: true' property. */ #ifndef _OpenAPI_scheduled_communication_time_rm_H_ #define _OpenAPI_scheduled_communication_time_rm_H_ #include #include "../external/cJSON.h" #include "../include/list.h" #include "../include/keyValuePair.h" #include "../include/binary.h" #include "null_value.h" #include "scheduled_communication_time.h" #ifdef __cplusplus extern "C" { #endif typedef struct OpenAPI_scheduled_communication_time_rm_s OpenAPI_scheduled_communication_time_rm_t; typedef struct OpenAPI_scheduled_communication_time_rm_s { OpenAPI_list_t *days_of_week; char *time_of_day_start; char *time_of_day_end; } OpenAPI_scheduled_communication_time_rm_t; OpenAPI_scheduled_communication_time_rm_t *OpenAPI_scheduled_communication_time_rm_create( OpenAPI_list_t *days_of_week, char *time_of_day_start, char *time_of_day_end ); void OpenAPI_scheduled_communication_time_rm_free(OpenAPI_scheduled_communication_time_rm_t *scheduled_communication_time_rm); OpenAPI_scheduled_communication_time_rm_t *OpenAPI_scheduled_communication_time_rm_parseFromJSON(cJSON *scheduled_communication_time_rmJSON); cJSON *OpenAPI_scheduled_communication_time_rm_convertToJSON(OpenAPI_scheduled_communication_time_rm_t *scheduled_communication_time_rm); OpenAPI_scheduled_communication_time_rm_t *OpenAPI_scheduled_communication_time_rm_copy(OpenAPI_scheduled_communication_time_rm_t *dst, OpenAPI_scheduled_communication_time_rm_t *src); #ifdef __cplusplus } #endif #endif /* _OpenAPI_scheduled_communication_time_rm_H_ */