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