mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-20 12:22:21 -06:00
7 lines
117 B
TypeScript
7 lines
117 B
TypeScript
export class WebhookDto {
|
|
enabled?: boolean;
|
|
url?: string;
|
|
events?: string[];
|
|
webhook_by_events?: boolean;
|
|
}
|