/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { StatusMigration } from "../definitions/StatusMigration"; import { WorkflowLayout } from "../definitions/WorkflowLayout"; import { StatusMappingDTO } from "../definitions/StatusMappingDTO"; import { StatusLayoutUpdate } from "../definitions/StatusLayoutUpdate"; import { TransitionUpdateDTO } from "../definitions/TransitionUpdateDTO"; import { DocumentVersion } from "../definitions/DocumentVersion"; export interface WorkflowUpdate { /** * The mapping of old to new status ID. */ defaultStatusMappings?: Array; /** * The new description for this workflow. */ description?: string; /** * The ID of this workflow. */ id: string; loopedTransitionContainerLayout?: WorkflowLayout; startPointLayout?: WorkflowLayout; /** * The mapping of old to new status ID for a specific project and issue type. */ statusMappings?: Array; /** * The statuses associated with this workflow. */ statuses: Array; /** * The transitions of this workflow. */ transitions: Array; version: DocumentVersion; [x: string]: any; } //# sourceMappingURL=WorkflowUpdate.d.ts.map