/** * 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 { WorkflowTransitionRulesUpdateErrorDetails } from './'; /** * Details of any errors encountered while updating workflow transition rules. * @export * @interface WorkflowTransitionRulesUpdateErrors */ export interface WorkflowTransitionRulesUpdateErrors { /** * A list of workflows. * @type {Array} * @memberof WorkflowTransitionRulesUpdateErrors */ updateResults: Array; } export declare function WorkflowTransitionRulesUpdateErrorsFromJSON(json: any): WorkflowTransitionRulesUpdateErrors; export declare function WorkflowTransitionRulesUpdateErrorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowTransitionRulesUpdateErrors; export declare function WorkflowTransitionRulesUpdateErrorsToJSON(value?: WorkflowTransitionRulesUpdateErrors): any;