/** * 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 { WorkflowStatusProperties } from './'; /** * Details of a workflow status. * @export * @interface WorkflowStatus */ export interface WorkflowStatus { /** * The name of the status in the workflow. * @type {string} * @memberof WorkflowStatus */ name: string; /** * * @type {WorkflowStatusProperties} * @memberof WorkflowStatus */ properties?: WorkflowStatusProperties; /** * The ID of the issue status. * @type {string} * @memberof WorkflowStatus */ id: string; } export declare function WorkflowStatusFromJSON(json: any): WorkflowStatus; export declare function WorkflowStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowStatus; export declare function WorkflowStatusToJSON(value?: WorkflowStatus): any;