/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { PublishedWorkflowIdAsResponse } from "../definitions/PublishedWorkflowIdAsResponse"; import { WorkflowOperationsAsResponse } from "../definitions/WorkflowOperationsAsResponse"; import { ProjectDetailsAsResponse } from "../definitions/ProjectDetailsAsResponse"; import { WorkflowSchemeIdNameAsResponse } from "../definitions/WorkflowSchemeIdNameAsResponse"; import { WorkflowStatusAsResponse } from "../definitions/WorkflowStatusAsResponse"; import { TransitionAsResponse } from "../definitions/TransitionAsResponse"; export interface WorkflowAsResponse { /** * The creation date of the workflow. */ created?: string; /** * The description of the workflow. */ description: string; /** * Whether the workflow has a draft version. */ hasDraftWorkflow?: boolean; id: PublishedWorkflowIdAsResponse; /** * Whether this is the default workflow. */ isDefault?: boolean; operations?: WorkflowOperationsAsResponse; /** * The projects the workflow is assigned to, through workflow schemes. */ projects?: Array; /** * The workflow schemes the workflow is assigned to. */ schemes?: Array; /** * The statuses of the workflow. */ statuses?: Array; /** * The transitions of the workflow. */ transitions?: Array; /** * The last edited date of the workflow. */ updated?: string; } //# sourceMappingURL=WorkflowAsResponse.d.ts.map