/*
* 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
*/
/// User : A user with details as permitted by the user's Atlassian Account privacy settings. However, be aware of these exceptions: * User record deleted from Atlassian: This occurs as the result of a right to be forgotten request. In this case, `displayName` provides an indication and other parameters have default values or are blank (for example, email is blank). * User record corrupted: This occurs as a results of events such as a server import and can only happen to deleted users. In this case, `accountId` returns *unknown* and all other parameters have fallback values. * User record unavailable: This usually occurs due to an internal service outage. In this case, all parameters have fallback values.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct User {
/// The URL of the user.
#[serde(rename = "self", skip_serializing_if = "Option::is_none")]
pub _self: Option<String>,
/// This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.
#[serde(rename = "key", skip_serializing_if = "Option::is_none")]
pub key: Option<String>,
/// The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. Required in requests.
#[serde(rename = "accountId", skip_serializing_if = "Option::is_none")]
pub account_id: Option<String>,
/// The user account type. Can take the following values: * `atlassian` regular Atlassian user account * `app` system account used for Connect applications and OAuth to represent external systems * `customer` Jira Service Desk account representing an external service desk
#[serde(rename = "accountType", skip_serializing_if = "Option::is_none")]
pub account_type: Option<AccountType>,
/// This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details.
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// The email address of the user. Depending on the user’s privacy setting, this may be returned as null.
#[serde(rename = "emailAddress", skip_serializing_if = "Option::is_none")]
pub email_address: Option<String>,
/// The avatars of the user.
#[serde(rename = "avatarUrls", skip_serializing_if = "Option::is_none")]
pub avatar_urls: Option<crate::models::AvatarUrlsBean>,
/// The display name of the user. Depending on the user’s privacy setting, this may return an alternative value.
#[serde(rename = "displayName", skip_serializing_if = "Option::is_none")]
pub display_name: Option<String>,
/// Whether the user is active.
#[serde(rename = "active", skip_serializing_if = "Option::is_none")]
pub active: Option<bool>,
/// The time zone specified in the user's profile. Depending on the user’s privacy setting, this may be returned as null.
#[serde(rename = "timeZone", skip_serializing_if = "Option::is_none")]
pub time_zone: Option<String>,
/// The locale of the user. Depending on the user’s privacy setting, this may be returned as null.
#[serde(rename = "locale", skip_serializing_if = "Option::is_none")]
pub locale: Option<String>,
/// The groups that the user belongs to.
#[serde(rename = "groups", skip_serializing_if = "Option::is_none")]
pub groups: Option<crate::models::SimpleListWrapperGroupName>,
/// The application roles the user is assigned to.
#[serde(rename = "applicationRoles", skip_serializing_if = "Option::is_none")]
pub application_roles: Option<crate::models::SimpleListWrapperApplicationRole>,
/// Expand options that include additional user details in the response.
#[serde(rename = "expand", skip_serializing_if = "Option::is_none")]
pub expand: Option<String>,
}
impl User {
/// A user with details as permitted by the user's Atlassian Account privacy settings. However, be aware of these exceptions: * User record deleted from Atlassian: This occurs as the result of a right to be forgotten request. In this case, `displayName` provides an indication and other parameters have default values or are blank (for example, email is blank). * User record corrupted: This occurs as a results of events such as a server import and can only happen to deleted users. In this case, `accountId` returns *unknown* and all other parameters have fallback values. * User record unavailable: This usually occurs due to an internal service outage. In this case, all parameters have fallback values.
pub fn new() -> User {
User {
_self: None,
key: None,
account_id: None,
account_type: None,
name: None,
email_address: None,
avatar_urls: None,
display_name: None,
active: None,
time_zone: None,
locale: None,
groups: None,
application_roles: None,
expand: None,
}
}
}
/// The user account type. Can take the following values: * `atlassian` regular Atlassian user account * `app` system account used for Connect applications and OAuth to represent external systems * `customer` Jira Service Desk account representing an external service desk
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum AccountType {
#[serde(rename = "atlassian")]
Atlassian,
#[serde(rename = "app")]
App,
#[serde(rename = "customer")]
Customer,
#[serde(rename = "unknown")]
Unknown,
}
impl Default for AccountType {
fn default() -> AccountType {
Self::Atlassian
}
}