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