/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { ScheduleResourceSchema } from './ScheduleResourceSchema'; /** * * @export * @interface ScheduleSchema */ export interface ScheduleSchema { /** * * @type {ScheduleResourceSchema} * @memberof ScheduleSchema */ data?: ScheduleResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof ScheduleSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ScheduleSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ScheduleSchema interface. */ export declare function instanceOfScheduleSchema(value: object): value is ScheduleSchema; export declare function ScheduleSchemaFromJSON(json: any): ScheduleSchema; export declare function ScheduleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleSchema; export declare function ScheduleSchemaToJSON(json: any): ScheduleSchema; export declare function ScheduleSchemaToJSONTyped(value?: ScheduleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ScheduleSchema.d.ts.map