/** * 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 { CallRelationshipsBoeUserDataSchema } from './CallRelationshipsBoeUserDataSchema'; /** * Boe AI agent involved in the call. Mirror of tenant.relationships.boeUser - always populated when boe is on the call. Splitting this from the generic `user` slot keeps the semantics clean: `user` is for human counterparties, `boeUser` is the AI agent. * @export * @interface CallRelationshipsBoeUserSchema */ export interface CallRelationshipsBoeUserSchema { /** * * @type {CallRelationshipsBoeUserDataSchema} * @memberof CallRelationshipsBoeUserSchema */ data?: CallRelationshipsBoeUserDataSchema | null; } /** * Check if a given object implements the CallRelationshipsBoeUserSchema interface. */ export declare function instanceOfCallRelationshipsBoeUserSchema(value: object): value is CallRelationshipsBoeUserSchema; export declare function CallRelationshipsBoeUserSchemaFromJSON(json: any): CallRelationshipsBoeUserSchema; export declare function CallRelationshipsBoeUserSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallRelationshipsBoeUserSchema; export declare function CallRelationshipsBoeUserSchemaToJSON(json: any): CallRelationshipsBoeUserSchema; export declare function CallRelationshipsBoeUserSchemaToJSONTyped(value?: CallRelationshipsBoeUserSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallRelationshipsBoeUserSchema.d.ts.map