pub struct GetIssueSecurityLevelMembersParams {
pub issue_security_scheme_id: i64,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
pub issue_security_level_id: Option<Vec<i64>>,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method get_issue_security_level_members
Fields§
§issue_security_scheme_id: i64
The ID of the issue security scheme. Use the Get issue security schemes operation to get a list of issue security scheme IDs.
start_at: Option<i64>
The index of the first item to return in a page of results (page offset).
max_results: Option<i32>
The maximum number of items to return per page.
issue_security_level_id: Option<Vec<i64>>
The list of issue security level IDs. To include multiple issue security levels separate IDs with ampersand: issueSecurityLevelId=10000&issueSecurityLevelId=10001
.
expand: Option<String>
Use expand to include additional information in the response. This parameter accepts a comma-separated list. Expand options include: * all
Returns all expandable information. * field
Returns information about the custom field granted the permission. * group
Returns information about the group that is granted the permission. * projectRole
Returns information about the project role granted the permission. * user
Returns information about the user who is granted the permission.
Trait Implementations§
Source§impl Clone for GetIssueSecurityLevelMembersParams
impl Clone for GetIssueSecurityLevelMembersParams
Source§fn clone(&self) -> GetIssueSecurityLevelMembersParams
fn clone(&self) -> GetIssueSecurityLevelMembersParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more