/** * 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 { ChatRelationshipsBoeUserDataSchema } from './ChatRelationshipsBoeUserDataSchema'; /** * Boe AI agent involved in this message. Mirror of tenant.relationships.boeUser - always populated when boe is on either side of the conversation (today: every row). Splitting this from the generic `user` slot keeps the semantics clean: `user` is for human counterparties, `boeUser` is the AI agent. * @export * @interface ChatRelationshipsBoeUserSchema */ export interface ChatRelationshipsBoeUserSchema { /** * * @type {ChatRelationshipsBoeUserDataSchema} * @memberof ChatRelationshipsBoeUserSchema */ data?: ChatRelationshipsBoeUserDataSchema | null; } /** * Check if a given object implements the ChatRelationshipsBoeUserSchema interface. */ export declare function instanceOfChatRelationshipsBoeUserSchema(value: object): value is ChatRelationshipsBoeUserSchema; export declare function ChatRelationshipsBoeUserSchemaFromJSON(json: any): ChatRelationshipsBoeUserSchema; export declare function ChatRelationshipsBoeUserSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRelationshipsBoeUserSchema; export declare function ChatRelationshipsBoeUserSchemaToJSON(json: any): ChatRelationshipsBoeUserSchema; export declare function ChatRelationshipsBoeUserSchemaToJSONTyped(value?: ChatRelationshipsBoeUserSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatRelationshipsBoeUserSchema.d.ts.map