/** * 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 { EventRelationshipsSchemaCalendar } from './EventRelationshipsSchemaCalendar'; import type { EventRelationshipsSchemaSource } from './EventRelationshipsSchemaSource'; /** * Event belongs to one calendar; optionally backlinks to a source resource. * @export * @interface EventRelationshipsSchema */ export interface EventRelationshipsSchema { /** * * @type {EventRelationshipsSchemaCalendar} * @memberof EventRelationshipsSchema */ calendar?: EventRelationshipsSchemaCalendar; /** * * @type {EventRelationshipsSchemaSource} * @memberof EventRelationshipsSchema */ source?: EventRelationshipsSchemaSource; } /** * Check if a given object implements the EventRelationshipsSchema interface. */ export declare function instanceOfEventRelationshipsSchema(value: object): value is EventRelationshipsSchema; export declare function EventRelationshipsSchemaFromJSON(json: any): EventRelationshipsSchema; export declare function EventRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventRelationshipsSchema; export declare function EventRelationshipsSchemaToJSON(json: any): EventRelationshipsSchema; export declare function EventRelationshipsSchemaToJSONTyped(value?: EventRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EventRelationshipsSchema.d.ts.map