/** * 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 { ChatRelationshipsUserDataSchema } from './ChatRelationshipsUserDataSchema'; /** * Internal human user (employee). Reserved for user-to-user webapp/Teams chat counterparties. Today this is typically null - boe-signed outbound rows put the boe AI in `boeUser`, not here. * @export * @interface ChatRelationshipsUserSchema */ export interface ChatRelationshipsUserSchema { /** * * @type {ChatRelationshipsUserDataSchema} * @memberof ChatRelationshipsUserSchema */ data?: ChatRelationshipsUserDataSchema | null; } /** * Check if a given object implements the ChatRelationshipsUserSchema interface. */ export declare function instanceOfChatRelationshipsUserSchema(value: object): value is ChatRelationshipsUserSchema; export declare function ChatRelationshipsUserSchemaFromJSON(json: any): ChatRelationshipsUserSchema; export declare function ChatRelationshipsUserSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRelationshipsUserSchema; export declare function ChatRelationshipsUserSchemaToJSON(json: any): ChatRelationshipsUserSchema; export declare function ChatRelationshipsUserSchemaToJSONTyped(value?: ChatRelationshipsUserSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatRelationshipsUserSchema.d.ts.map