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.
26 lines (25 loc) • 832 B
TypeScript
import type { BasicUser } from './basic-user';
import type { JobStatus } from './job-status';
import type { LabelsSummary } from './labels-summary';
import type { Storage } from './storage';
import type { TasksSummary } from './tasks-summary';
export interface ProjectRead {
'url'?: string;
'id'?: number;
'name'?: string;
'owner'?: BasicUser | null;
'assignee'?: BasicUser | null;
'guide_id'?: number | null;
'bug_tracker'?: string;
'task_subsets'?: Array<string>;
'created_date'?: string;
'updated_date'?: string;
'status'?: JobStatus;
'dimension'?: string | null;
'organization'?: number | null;
'target_storage'?: Storage | null;
'source_storage'?: Storage | null;
'tasks': TasksSummary;
'labels': LabelsSummary;
'assignee_updated_date'?: string | null;
}