/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ScheduleResourceSchema } from './ScheduleResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface SchedulesSchema */ export interface SchedulesSchema { /** * * @type {Array} * @memberof SchedulesSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof SchedulesSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof SchedulesSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the SchedulesSchema interface. */ export declare function instanceOfSchedulesSchema(value: object): value is SchedulesSchema; export declare function SchedulesSchemaFromJSON(json: any): SchedulesSchema; export declare function SchedulesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SchedulesSchema; export declare function SchedulesSchemaToJSON(json: any): SchedulesSchema; export declare function SchedulesSchemaToJSONTyped(value?: SchedulesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SchedulesSchema.d.ts.map