pub struct GetAllIssueFieldOptionsParams {
pub field_key: String,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
}
Expand description
struct for passing parameters to the method get_all_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.
Trait Implementations§
Source§impl Clone for GetAllIssueFieldOptionsParams
impl Clone for GetAllIssueFieldOptionsParams
Source§fn clone(&self) -> GetAllIssueFieldOptionsParams
fn clone(&self) -> GetAllIssueFieldOptionsParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for GetAllIssueFieldOptionsParams
impl Default for GetAllIssueFieldOptionsParams
Source§fn default() -> GetAllIssueFieldOptionsParams
fn default() -> GetAllIssueFieldOptionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetAllIssueFieldOptionsParams
impl RefUnwindSafe for GetAllIssueFieldOptionsParams
impl Send for GetAllIssueFieldOptionsParams
impl Sync for GetAllIssueFieldOptionsParams
impl Unpin for GetAllIssueFieldOptionsParams
impl UnwindSafe for GetAllIssueFieldOptionsParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more