/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ScheduleRelationshipsSchema } from './ScheduleRelationshipsSchema'; import type { ScheduleAttributesSchema } from './ScheduleAttributesSchema'; /** * * @export * @interface CreateScheduleRequestBodyData */ export interface CreateScheduleRequestBodyData { /** * * @type {CreateScheduleRequestBodyDataTypeEnum} * @memberof CreateScheduleRequestBodyData */ type: CreateScheduleRequestBodyDataTypeEnum; /** * * @type {ScheduleAttributesSchema} * @memberof CreateScheduleRequestBodyData */ attributes: ScheduleAttributesSchema; /** * * @type {ScheduleRelationshipsSchema} * @memberof CreateScheduleRequestBodyData */ relationships?: ScheduleRelationshipsSchema; } /** * @export */ export declare const CreateScheduleRequestBodyDataTypeEnum: { readonly Schedules: "schedules"; }; export type CreateScheduleRequestBodyDataTypeEnum = typeof CreateScheduleRequestBodyDataTypeEnum[keyof typeof CreateScheduleRequestBodyDataTypeEnum]; /** * Check if a given object implements the CreateScheduleRequestBodyData interface. */ export declare function instanceOfCreateScheduleRequestBodyData(value: object): value is CreateScheduleRequestBodyData; export declare function CreateScheduleRequestBodyDataFromJSON(json: any): CreateScheduleRequestBodyData; export declare function CreateScheduleRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateScheduleRequestBodyData; export declare function CreateScheduleRequestBodyDataToJSON(json: any): CreateScheduleRequestBodyData; export declare function CreateScheduleRequestBodyDataToJSONTyped(value?: CreateScheduleRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateScheduleRequestBodyData.d.ts.map