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

/// FieldConfigurationSchemeProjects : Project list with assigned field configuration schema.



#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct FieldConfigurationSchemeProjects {
    #[serde(rename = "fieldConfigurationScheme", skip_serializing_if = "Option::is_none")]
    pub field_configuration_scheme: Option<crate::models::FieldConfigurationScheme>,
    /// The IDs of projects using the field configuration scheme.
    #[serde(rename = "projectIds")]
    pub project_ids: Vec<String>,
}

impl FieldConfigurationSchemeProjects {
    /// Project list with assigned field configuration schema.
    pub fn new(project_ids: Vec<String>) -> FieldConfigurationSchemeProjects {
        FieldConfigurationSchemeProjects {
            field_configuration_scheme: None,
            project_ids,
        }
    }
}