/** * 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 { MeetingRelationshipsCalendarSchemaData } from './MeetingRelationshipsCalendarSchemaData'; /** * Calendar this meeting is booked on. Typically boe.calendar for recall meetings, or a shared room calendar for chime. * @export * @interface MeetingRelationshipsCalendarSchema */ export interface MeetingRelationshipsCalendarSchema { /** * * @type {MeetingRelationshipsCalendarSchemaData} * @memberof MeetingRelationshipsCalendarSchema */ data?: MeetingRelationshipsCalendarSchemaData | null; } /** * Check if a given object implements the MeetingRelationshipsCalendarSchema interface. */ export declare function instanceOfMeetingRelationshipsCalendarSchema(value: object): value is MeetingRelationshipsCalendarSchema; export declare function MeetingRelationshipsCalendarSchemaFromJSON(json: any): MeetingRelationshipsCalendarSchema; export declare function MeetingRelationshipsCalendarSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): MeetingRelationshipsCalendarSchema; export declare function MeetingRelationshipsCalendarSchemaToJSON(json: any): MeetingRelationshipsCalendarSchema; export declare function MeetingRelationshipsCalendarSchemaToJSONTyped(value?: MeetingRelationshipsCalendarSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MeetingRelationshipsCalendarSchema.d.ts.map