import type { BasicUser } from './basic-user';
import type { CommentsSummary } from './comments-summary';
export interface IssueRead {
    'id'?: number;
    'frame'?: number;
    'position': Array<number>;
    'job'?: number;
    'owner'?: BasicUser | null;
    'assignee'?: BasicUser | null;
    'created_date'?: string | null;
    'updated_date'?: string | null;
    'resolved'?: boolean;
    'comments': CommentsSummary;
}
