/** * 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 { TenantRelationshipsBoeUserSchemaData } from './TenantRelationshipsBoeUserSchemaData'; /** * The Boe AI user account for this tenant. Used as the system principal for guest-initiated workflows (apply forms, inbound emails, inbound calls) where no authenticated user exists. Set during tenant onboarding; not client-writable via tenant PATCH. * @export * @interface TenantRelationshipsBoeUserSchema */ export interface TenantRelationshipsBoeUserSchema { /** * * @type {TenantRelationshipsBoeUserSchemaData} * @memberof TenantRelationshipsBoeUserSchema */ data?: TenantRelationshipsBoeUserSchemaData | null; } /** * Check if a given object implements the TenantRelationshipsBoeUserSchema interface. */ export declare function instanceOfTenantRelationshipsBoeUserSchema(value: object): value is TenantRelationshipsBoeUserSchema; export declare function TenantRelationshipsBoeUserSchemaFromJSON(json: any): TenantRelationshipsBoeUserSchema; export declare function TenantRelationshipsBoeUserSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRelationshipsBoeUserSchema; export declare function TenantRelationshipsBoeUserSchemaToJSON(json: any): TenantRelationshipsBoeUserSchema; export declare function TenantRelationshipsBoeUserSchemaToJSONTyped(value?: TenantRelationshipsBoeUserSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRelationshipsBoeUserSchema.d.ts.map