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.
20 lines (19 loc) • 543 B
TypeScript
export interface EventRequest {
'scope': string;
'obj_name'?: string | null;
'obj_id'?: number | null;
'obj_val'?: string | null;
'source'?: string | null;
'timestamp': string;
'count'?: number | null;
'duration'?: number;
'project_id'?: number | null;
'task_id'?: number | null;
'job_id'?: number | null;
'user_id'?: number | null;
'user_name'?: string | null;
'user_email'?: string | null;
'org_id'?: number | null;
'org_slug'?: string | null;
'payload'?: string | null;
}