import type { BasicUser } from './basic-user';
import type { EventsEnum } from './events-enum';
import type { WebhookContentType } from './webhook-content-type';
import type { WebhookType } from './webhook-type';
export interface WebhookRead {
    'id'?: number;
    'url'?: string;
    'target_url'?: string;
    'description'?: string;
    'type': WebhookType;
    'content_type': WebhookContentType;
    'is_active'?: boolean;
    'enable_ssl'?: boolean;
    'created_date'?: string;
    'updated_date'?: string;
    'owner'?: BasicUser | null;
    'project_id'?: number | null;
    'organization'?: number | null;
    'events'?: Array<EventsEnum>;
    'last_status'?: number;
    'last_delivery_date'?: string;
}
