import type { EventsEnum } from './events-enum';
import type { WebhookContentType } from './webhook-content-type';
import type { WebhookType } from './webhook-type';
export interface WebhookWriteRequest {
    'target_url': string;
    'description'?: string;
    'type': WebhookType;
    'content_type'?: WebhookContentType;
    'secret'?: string;
    'is_active'?: boolean;
    'enable_ssl'?: boolean;
    'project_id'?: number | null;
    'events': Array<EventsEnum>;
}
