Skip to main content

jira/gen/models/
issue_type_ids.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
11/// IssueTypeIds : A list of issue type IDs.
12
13#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
14pub struct IssueTypeIds {
15    /// List of issue type IDs.
16    #[serde(rename = "issueTypeIds")]
17    pub issue_type_ids: Vec<String>,
18}
19
20impl IssueTypeIds {
21    /// A list of issue type IDs.
22    pub fn new(issue_type_ids: Vec<String>) -> IssueTypeIds {
23        IssueTypeIds { issue_type_ids }
24    }
25}