mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-21 21:02:21 -06:00
14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
export class InstanceDto {
|
|
instanceName: string;
|
|
webhook?: string;
|
|
webhook_by_events?: boolean;
|
|
events?: string[];
|
|
qrcode?: boolean;
|
|
number?: string;
|
|
token?: string;
|
|
chatwoot_account_id?: string;
|
|
chatwoot_token?: string;
|
|
chatwoot_url?: string;
|
|
chatwoot_sign_msg?: boolean;
|
|
}
|