scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
11 lines (10 loc) • 367 B
TypeScript
import { EEvolutionEvent } from '../enums';
import { IEvolutionWebhook } from '../interfaces/i-webhook';
export declare class EvolutionWebhookEntity implements IEvolutionWebhook {
enabled: boolean;
events: EEvolutionEvent[];
url: string;
webhookBase64: boolean;
webhookByEvents: boolean;
constructor(data?: Partial<EvolutionWebhookEntity>);
}