evolution-api-sdk
Version:
Unofficial SDK for the Evolution Whatsapp API v2
16 lines (13 loc) • 352 B
text/typescript
import { WebhookEventSetup } from '../../../types/webhooks.mjs';
interface SetRequest {
enabled: boolean;
url: string;
webhookByEvents: boolean;
webhookBase64: boolean;
events: WebhookEventSetup[];
}
interface SetResponse {
message: string;
}
type SetOptions = SetRequest;
export type { SetOptions, SetRequest, SetResponse };