/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PublishedWorkflowId, Transition, WorkflowStatus } from './'; /** * Details about a workflow. * @export * @interface Workflow */ export interface Workflow { /** * * @type {PublishedWorkflowId} * @memberof Workflow */ id?: PublishedWorkflowId; /** * The statuses of the workflow. * @type {Array} * @memberof Workflow */ statuses?: Array; /** * The description of the workflow. * @type {string} * @memberof Workflow */ description: string; /** * The transitions of the workflow. * @type {Array} * @memberof Workflow */ transitions?: Array; } export declare function WorkflowFromJSON(json: any): Workflow; export declare function WorkflowFromJSONTyped(json: any, ignoreDiscriminator: boolean): Workflow; export declare function WorkflowToJSON(value?: Workflow): any;