Files
evolution-api/src/api/dto/webhook.dto.ts
2024-04-12 17:13:15 -03:00

8 lines
145 B
TypeScript

export class WebhookDto {
enabled?: boolean;
url?: string;
events?: string[];
webhook_by_events?: boolean;
webhook_base64?: boolean;
}