pub struct JiraUpdateInput {
pub id: Option<String>,
pub update_projects: Option<bool>,
pub update_metadata: Option<bool>,
pub delete_webhook: Option<bool>,
pub webhook_secret: Option<String>,
pub no_secret: Option<bool>,
pub access_token: Option<String>,
pub email: Option<String>,
}Fields§
§id: Option<String>The id of the integration to update.
update_projects: Option<bool>Whether to refresh Jira Projects for the integration.
update_metadata: Option<bool>Whether to refresh Jira metadata for the integration.
delete_webhook: Option<bool>Whether to delete the current manual webhook configuration.
webhook_secret: Option<String>Webhook secret for a new manual configuration.
no_secret: Option<bool>Whether the Jira instance does not support webhook secrets.
access_token: Option<String>The Jira personal access token.
email: Option<String>The Jira user email address associated with the personal access token.
Trait Implementations§
Source§impl Clone for JiraUpdateInput
impl Clone for JiraUpdateInput
Source§fn clone(&self) -> JiraUpdateInput
fn clone(&self) -> JiraUpdateInput
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 Debug for JiraUpdateInput
impl Debug for JiraUpdateInput
Source§impl Default for JiraUpdateInput
impl Default for JiraUpdateInput
Source§fn default() -> JiraUpdateInput
fn default() -> JiraUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JiraUpdateInput
impl<'de> Deserialize<'de> for JiraUpdateInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JiraUpdateInput
impl RefUnwindSafe for JiraUpdateInput
impl Send for JiraUpdateInput
impl Sync for JiraUpdateInput
impl Unpin for JiraUpdateInput
impl UnwindSafe for JiraUpdateInput
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