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.
12 lines (11 loc) • 371 B
TypeScript
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>;
}