jira_api_v2/models/
issues_update_bean.rs

1/*
2 * The Jira Cloud platform REST API
3 *
4 * Jira Cloud platform REST API documentation
5 *
6 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
7 * Contact: ecosystem@atlassian.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct IssuesUpdateBean {
16    #[serde(rename = "issueUpdates", skip_serializing_if = "Option::is_none")]
17    pub issue_updates: Option<Vec<models::IssueUpdateDetails>>,
18}
19
20impl IssuesUpdateBean {
21    pub fn new() -> IssuesUpdateBean {
22        IssuesUpdateBean {
23            issue_updates: None,
24        }
25    }
26}
27