/** * 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 { CalendarResourceSchema } from './CalendarResourceSchema'; /** * * @export * @interface CalendarResponseDocument */ export interface CalendarResponseDocument { /** * * @type {CalendarResourceSchema} * @memberof CalendarResponseDocument */ data?: CalendarResourceSchema; } /** * Check if a given object implements the CalendarResponseDocument interface. */ export declare function instanceOfCalendarResponseDocument(value: object): value is CalendarResponseDocument; export declare function CalendarResponseDocumentFromJSON(json: any): CalendarResponseDocument; export declare function CalendarResponseDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CalendarResponseDocument; export declare function CalendarResponseDocumentToJSON(json: any): CalendarResponseDocument; export declare function CalendarResponseDocumentToJSONTyped(value?: CalendarResponseDocument | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CalendarResponseDocument.d.ts.map