/** * 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 { CalendarRelationshipsOwnerSchema } from './CalendarRelationshipsOwnerSchema'; /** * Calendar belongs to one user (the owner). * @export * @interface CalendarRelationshipsSchema */ export interface CalendarRelationshipsSchema { /** * * @type {CalendarRelationshipsOwnerSchema} * @memberof CalendarRelationshipsSchema */ owner?: CalendarRelationshipsOwnerSchema; } /** * Check if a given object implements the CalendarRelationshipsSchema interface. */ export declare function instanceOfCalendarRelationshipsSchema(value: object): value is CalendarRelationshipsSchema; export declare function CalendarRelationshipsSchemaFromJSON(json: any): CalendarRelationshipsSchema; export declare function CalendarRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CalendarRelationshipsSchema; export declare function CalendarRelationshipsSchemaToJSON(json: any): CalendarRelationshipsSchema; export declare function CalendarRelationshipsSchemaToJSONTyped(value?: CalendarRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CalendarRelationshipsSchema.d.ts.map