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.
15 lines (14 loc) • 472 B
TypeScript
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>;
}