/*
* 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 ActorsMap {
/// The user account ID of the user to add.
#[serde(rename = "user", skip_serializing_if = "Option::is_none")]
pub user: Option<Vec<String>>,
/// The name of the group to add.
#[serde(rename = "group", skip_serializing_if = "Option::is_none")]
pub group: Option<Vec<String>>,
}
impl ActorsMap {
pub fn new() -> ActorsMap {
ActorsMap {
user: None,
group: None,
}
}
}