/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { WorkflowLayoutAsResponse } from "../definitions/WorkflowLayoutAsResponse"; import { WorkflowScopeAsResponse } from "../definitions/WorkflowScopeAsResponse"; import { WorkflowReferenceStatusAsResponse } from "../definitions/WorkflowReferenceStatusAsResponse"; import { WorkflowTransitionsAsResponse } from "../definitions/WorkflowTransitionsAsResponse"; import { DocumentVersionAsResponse } from "../definitions/DocumentVersionAsResponse"; export interface JiraWorkflowAsResponse { /** * The creation date of the workflow. */ created?: string; /** * The description of the workflow. */ description?: string; /** * The ID of the workflow. */ id?: string; /** * Indicates if the workflow can be edited. */ isEditable?: boolean; loopedTransitionContainerLayout?: WorkflowLayoutAsResponse; /** * The name of the workflow. */ name?: string; scope?: WorkflowScopeAsResponse; startPointLayout?: WorkflowLayoutAsResponse; /** * The statuses referenced in this workflow. */ statuses?: Array; /** * If there is a current [asynchronous task](#async-operations) operation for this workflow. */ taskId?: string; /** * The transitions of the workflow. */ transitions?: Array; /** * The last edited date of the workflow. */ updated?: string; version?: DocumentVersionAsResponse; } //# sourceMappingURL=JiraWorkflowAsResponse.d.ts.map