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