@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
20 lines (19 loc) • 411 B
TypeScript
import type { message } from "./message";
export declare type public_conversation = {
/**
* Id of the conversation
*/
id?: number;
/**
* The inbox id of the conversation
*/
inbox_id?: string;
/**
* Messages in the conversation
*/
messages?: Array<message>;
/**
* The contact information associated to the conversation
*/
contact?: any;
};