/** * 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 { ChatRelationshipsConversationDataSchema } from './ChatRelationshipsConversationDataSchema'; /** * Thread the chat row belongs to. SMS replies on the same boe * number share a conversation; the workflow engine parks runs * on the conversation's meta and reads parkedRunContext to * resume on inbound. The conversation id is denormalised onto * the chat row's internal `conversationId` attribute (indexed * by ConversationIdIndex) for cheap per-thread history queries * - API consumers should read it from this relationship, not * from attributes. * @export * @interface ChatRelationshipsConversationSchema */ export interface ChatRelationshipsConversationSchema { /** * * @type {ChatRelationshipsConversationDataSchema} * @memberof ChatRelationshipsConversationSchema */ data?: ChatRelationshipsConversationDataSchema | null; } /** * Check if a given object implements the ChatRelationshipsConversationSchema interface. */ export declare function instanceOfChatRelationshipsConversationSchema(value: object): value is ChatRelationshipsConversationSchema; export declare function ChatRelationshipsConversationSchemaFromJSON(json: any): ChatRelationshipsConversationSchema; export declare function ChatRelationshipsConversationSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatRelationshipsConversationSchema; export declare function ChatRelationshipsConversationSchemaToJSON(json: any): ChatRelationshipsConversationSchema; export declare function ChatRelationshipsConversationSchemaToJSONTyped(value?: ChatRelationshipsConversationSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ChatRelationshipsConversationSchema.d.ts.map