/** * 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 { UpdateScheduleRequestBodyData } from './UpdateScheduleRequestBodyData'; /** * * @export * @interface UpdateScheduleRequestBody */ export interface UpdateScheduleRequestBody { /** * * @type {UpdateScheduleRequestBodyData} * @memberof UpdateScheduleRequestBody */ data: UpdateScheduleRequestBodyData; } /** * Check if a given object implements the UpdateScheduleRequestBody interface. */ export declare function instanceOfUpdateScheduleRequestBody(value: object): value is UpdateScheduleRequestBody; export declare function UpdateScheduleRequestBodyFromJSON(json: any): UpdateScheduleRequestBody; export declare function UpdateScheduleRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateScheduleRequestBody; export declare function UpdateScheduleRequestBodyToJSON(json: any): UpdateScheduleRequestBody; export declare function UpdateScheduleRequestBodyToJSONTyped(value?: UpdateScheduleRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateScheduleRequestBody.d.ts.map