/*
* 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
* Generated by: https://openapi-generator.tech
*/
/// WorkflowTransitionRulesUpdateErrors : Details of any errors encountered while updating workflow transition rules.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct WorkflowTransitionRulesUpdateErrors {
/// A list of workflows.
#[serde(rename = "updateResults")]
pub update_results: Vec<crate::models::WorkflowTransitionRulesUpdateErrorDetails>,
}
impl WorkflowTransitionRulesUpdateErrors {
/// Details of any errors encountered while updating workflow transition rules.
pub fn new(update_results: Vec<crate::models::WorkflowTransitionRulesUpdateErrorDetails>) -> WorkflowTransitionRulesUpdateErrors {
WorkflowTransitionRulesUpdateErrors {
update_results,
}
}
}