Documentation
/*
 * 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
 */




#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct IncludedFields {
    #[serde(rename = "excluded", skip_serializing_if = "Option::is_none")]
    pub excluded: Option<Vec<String>>,
    #[serde(rename = "included", skip_serializing_if = "Option::is_none")]
    pub included: Option<Vec<String>>,
    #[serde(rename = "actuallyIncluded", skip_serializing_if = "Option::is_none")]
    pub actually_included: Option<Vec<String>>,
}

impl IncludedFields {
    pub fn new() -> IncludedFields {
        IncludedFields {
            excluded: None,
            included: None,
            actually_included: None,
        }
    }
}