@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
27 lines (26 loc) • 665 B
TypeScript
import type { conversation } from "./conversation";
import type { generic_id } from "./generic_id";
import type { user } from "./user";
export declare type conversation_show = generic_id & conversation & {
meta?: {
sender?: {
/**
* ID fo the sender
*/
id?: number;
/**
* The name of the sender
*/
name?: string;
/**
* Avatar URL of the contact
*/
thumbnail?: string;
/**
* Channel Type
*/
channel?: string;
};
assignee?: user;
};
};