pub struct DeleteIssueFieldOptionParams {
pub field_key: String,
pub option_id: i64,
}
Expand description
struct for passing parameters to the method delete_issue_field_option
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\"
option_id: i64
The ID of the option to be deleted.
Trait Implementations§
Source§impl Clone for DeleteIssueFieldOptionParams
impl Clone for DeleteIssueFieldOptionParams
Source§fn clone(&self) -> DeleteIssueFieldOptionParams
fn clone(&self) -> DeleteIssueFieldOptionParams
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 moreAuto Trait Implementations§
impl Freeze for DeleteIssueFieldOptionParams
impl RefUnwindSafe for DeleteIssueFieldOptionParams
impl Send for DeleteIssueFieldOptionParams
impl Sync for DeleteIssueFieldOptionParams
impl Unpin for DeleteIssueFieldOptionParams
impl UnwindSafe for DeleteIssueFieldOptionParams
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