mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-19 11:52:20 -06:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
export class WebhookDto {
|
|
enabled?: boolean;
|
|
url?: string;
|
|
events?: string[];
|
|
webhook_by_events?: boolean;
|
|
webhook_base64?: boolean;
|
|
}
|