pub struct ApplicationRole {Show 14 fields
pub key: Option<String>,
pub groups: Option<Vec<String>>,
pub group_details: Option<Vec<GroupName>>,
pub name: Option<String>,
pub default_groups: Option<Vec<String>>,
pub default_groups_details: Option<Vec<GroupName>>,
pub selected_by_default: Option<bool>,
pub defined: Option<bool>,
pub number_of_seats: Option<i32>,
pub remaining_seats: Option<i32>,
pub user_count: Option<i32>,
pub user_count_description: Option<String>,
pub has_unlimited_seats: Option<bool>,
pub platform: Option<bool>,
}Expand description
ApplicationRole : Details of an application role.
Fields§
§key: Option<String>The key of the application role.
groups: Option<Vec<String>>The groups associated with the application role. As a group’s name can change, use of groupDetails is recommended to identify a groups.
group_details: Option<Vec<GroupName>>The groups associated with the application role.
name: Option<String>The display name of the application role.
default_groups: Option<Vec<String>>The groups that are granted default access for this application role. As a group’s name can change, use of defaultGroupsDetails is recommended to identify a groups.
default_groups_details: Option<Vec<GroupName>>The groups that are granted default access for this application role.
selected_by_default: Option<bool>Determines whether this application role should be selected by default on user creation.
defined: Option<bool>Deprecated.
number_of_seats: Option<i32>The maximum count of users on your license.
remaining_seats: Option<i32>The count of users remaining on your license.
user_count: Option<i32>The number of users counting against your license.
user_count_description: Option<String>The type of users being counted against your license.
has_unlimited_seats: Option<bool>§platform: Option<bool>Indicates if the application role belongs to Jira platform (jira-core).
Implementations§
Source§impl ApplicationRole
impl ApplicationRole
Sourcepub fn new() -> ApplicationRole
pub fn new() -> ApplicationRole
Details of an application role.
Trait Implementations§
Source§impl Clone for ApplicationRole
impl Clone for ApplicationRole
Source§fn clone(&self) -> ApplicationRole
fn clone(&self) -> ApplicationRole
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more