/** * 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 { WorkflowId } from './'; /** * Details of any errors encountered while updating workflow transition rules for a workflow. * @export * @interface WorkflowTransitionRulesUpdateErrorDetails */ export interface WorkflowTransitionRulesUpdateErrorDetails { /** * The list of errors that specify why the workflow update failed. The workflow was not updated if the list contains any entries. * @type {Array} * @memberof WorkflowTransitionRulesUpdateErrorDetails */ updateErrors?: Array; /** * A list of transition rule update errors, indexed by the transition rule ID. Any transition rule that appears here wasn\'t updated. * @type {{ [key: string]: Array; }} * @memberof WorkflowTransitionRulesUpdateErrorDetails */ ruleUpdateErrors: { [key: string]: Array; }; /** * * @type {WorkflowId} * @memberof WorkflowTransitionRulesUpdateErrorDetails */ workflowId?: WorkflowId; } export declare function WorkflowTransitionRulesUpdateErrorDetailsFromJSON(json: any): WorkflowTransitionRulesUpdateErrorDetails; export declare function WorkflowTransitionRulesUpdateErrorDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowTransitionRulesUpdateErrorDetails; export declare function WorkflowTransitionRulesUpdateErrorDetailsToJSON(value?: WorkflowTransitionRulesUpdateErrorDetails): any;