/** * 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 { TenantRelationshipsBoeCalendarSchemaData } from './TenantRelationshipsBoeCalendarSchemaData'; /** * Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId. * @export * @interface TenantRelationshipsBoeCalendarSchema */ export interface TenantRelationshipsBoeCalendarSchema { /** * * @type {TenantRelationshipsBoeCalendarSchemaData} * @memberof TenantRelationshipsBoeCalendarSchema */ data?: TenantRelationshipsBoeCalendarSchemaData | null; } /** * Check if a given object implements the TenantRelationshipsBoeCalendarSchema interface. */ export declare function instanceOfTenantRelationshipsBoeCalendarSchema(value: object): value is TenantRelationshipsBoeCalendarSchema; export declare function TenantRelationshipsBoeCalendarSchemaFromJSON(json: any): TenantRelationshipsBoeCalendarSchema; export declare function TenantRelationshipsBoeCalendarSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRelationshipsBoeCalendarSchema; export declare function TenantRelationshipsBoeCalendarSchemaToJSON(json: any): TenantRelationshipsBoeCalendarSchema; export declare function TenantRelationshipsBoeCalendarSchemaToJSONTyped(value?: TenantRelationshipsBoeCalendarSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRelationshipsBoeCalendarSchema.d.ts.map