/** * 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. */ /** * Properties of a workflow status. * @export * @interface WorkflowStatusProperties */ export interface WorkflowStatusProperties { /** * Whether issues are editable in this status. * @type {boolean} * @memberof WorkflowStatusProperties */ issueEditable: boolean; } export declare function WorkflowStatusPropertiesFromJSON(json: any): WorkflowStatusProperties; export declare function WorkflowStatusPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowStatusProperties; export declare function WorkflowStatusPropertiesToJSON(value?: WorkflowStatusProperties): any;