pub struct GetSelectableIssueFieldOptionsParams {
pub field_key: String,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
pub project_id: Option<i64>,
}
Expand description
struct for passing parameters to the method get_selectable_issue_field_options
Fields§
§field_key: String
The field key is specified in the following format: $(app-key)\\$(field-key). For example, example-add-on\_\_example-issue-field. To determine the fieldKey
value, do one of the following: * open the app’s plugin descriptor, then app-key is the key at the top and field-key is the key in the jiraIssueFields
module. app-key can also be found in the app listing in the Atlassian Universal Plugin Manager. * run Get fields and in the field details the value is returned in key
. For example, \"key\": \"teams-add-on__team-issue-field\"
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.
project_id: Option<i64>
Filters the results to options that are only available in the specified project.
Trait Implementations§
Source§impl Clone for GetSelectableIssueFieldOptionsParams
impl Clone for GetSelectableIssueFieldOptionsParams
Source§fn clone(&self) -> GetSelectableIssueFieldOptionsParams
fn clone(&self) -> GetSelectableIssueFieldOptionsParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more