/** * 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 UpdateScheduleRequestBodyData */ export interface UpdateScheduleRequestBodyData { /** * * @type {UpdateScheduleRequestBodyDataTypeEnum} * @memberof UpdateScheduleRequestBodyData */ type: UpdateScheduleRequestBodyDataTypeEnum; /** * * @type {string} * @memberof UpdateScheduleRequestBodyData */ id: string; /** * * @type {ScheduleAttributesSchema} * @memberof UpdateScheduleRequestBodyData */ attributes?: ScheduleAttributesSchema; /** * * @type {ScheduleRelationshipsSchema} * @memberof UpdateScheduleRequestBodyData */ relationships?: ScheduleRelationshipsSchema; } /** * @export */ export declare const UpdateScheduleRequestBodyDataTypeEnum: { readonly Schedules: "schedules"; }; export type UpdateScheduleRequestBodyDataTypeEnum = typeof UpdateScheduleRequestBodyDataTypeEnum[keyof typeof UpdateScheduleRequestBodyDataTypeEnum]; /** * Check if a given object implements the UpdateScheduleRequestBodyData interface. */ export declare function instanceOfUpdateScheduleRequestBodyData(value: object): value is UpdateScheduleRequestBodyData; export declare function UpdateScheduleRequestBodyDataFromJSON(json: any): UpdateScheduleRequestBodyData; export declare function UpdateScheduleRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateScheduleRequestBodyData; export declare function UpdateScheduleRequestBodyDataToJSON(json: any): UpdateScheduleRequestBodyData; export declare function UpdateScheduleRequestBodyDataToJSONTyped(value?: UpdateScheduleRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateScheduleRequestBodyData.d.ts.map