@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
19 lines (18 loc) • 348 B
TypeScript
export declare type canned_response = {
/**
* ID of the canned response
*/
id?: number;
/**
* Message content for canned response
*/
content?: string;
/**
* Short Code for quick access of the canned response
*/
short_code?: string;
/**
* Account Id
*/
account_id?: number;
};