import { TaskflowId, UserId, ProjectId, OrganizationId, CustomFieldRelevantSetting } from 'teambition-types'; import { TaskflowStatusSnippet } from './TaskflowStatus'; export interface TaskflowSchema { _id: TaskflowId; _boundToObjectId: ProjectId | OrganizationId; _creatorId: UserId; boundToObjectType: 'project' | 'organization'; created: string; name: string; objectType: 'task' | 'testcase'; setting?: CustomFieldRelevantSetting; taskflowstatuses?: TaskflowStatusSnippet[]; updated: string; }