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.
14 lines (13 loc) • 425 B
TypeScript
import type { AttributeRequest } from './attribute-request';
import type { LabelType } from './label-type';
import type { SublabelRequest } from './sublabel-request';
export interface PatchedLabelRequest {
'id'?: number;
'name'?: string;
'color'?: string;
'attributes'?: Array<AttributeRequest>;
'deleted'?: boolean;
'type'?: LabelType;
'svg'?: string;
'sublabels'?: Array<SublabelRequest>;
}