jira_api_v2/models/
included_fields.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 IncludedFields {
16    #[serde(rename = "excluded", skip_serializing_if = "Option::is_none")]
17    pub excluded: Option<Vec<String>>,
18    #[serde(rename = "included", skip_serializing_if = "Option::is_none")]
19    pub included: Option<Vec<String>>,
20    #[serde(rename = "actuallyIncluded", skip_serializing_if = "Option::is_none")]
21    pub actually_included: Option<Vec<String>>,
22}
23
24impl IncludedFields {
25    pub fn new() -> IncludedFields {
26        IncludedFields {
27            excluded: None,
28            included: None,
29            actually_included: None,
30        }
31    }
32}
33