mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-20 20:32:23 -06:00
8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
export class WebhookDto {
|
|
enabled?: boolean;
|
|
url?: string;
|
|
events?: string[];
|
|
webhookByEvents?: boolean;
|
|
webhookBase64?: boolean;
|
|
}
|