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;
}
