Files
evolution-api/src/api/dto/webhook.dto.ts
2024-06-06 14:47:58 -03:00

8 lines
142 B
TypeScript

export class WebhookDto {
enabled?: boolean;
url?: string;
events?: string[];
webhookByEvents?: boolean;
webhookBase64?: boolean;
}