UNPKG

cvat-sdk

Version:

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.

23 lines (22 loc) 717 B
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; }