@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
23 lines (22 loc) • 419 B
TypeScript
export declare type agent_bot = {
/**
* ID of the agent bot
*/
id?: number;
/**
* The name of the agent bot
*/
name?: string;
/**
* The description about the agent bot
*/
description?: string;
/**
* Account ID if it's an account specific bot
*/
account_id?: number;
/**
* The webhook URL for the bot
*/
outgoing_url?: string;
};