pub struct UpdateWebhookTemplateParams {
pub name: Option<String>,
pub notification_email: Option<String>,
pub destination_attributes: Option<WebhookDestinationAttributes>,
pub template_args: TemplateArgs,
}Expand description
Parameters for update_webhook_template.
Fields§
§name: Option<String>New human-readable name.
notification_email: Option<String>New notification email.
destination_attributes: Option<WebhookDestinationAttributes>New destination configuration.
template_args: TemplateArgsNew template identifier and arguments.
Trait Implementations§
Source§impl Clone for UpdateWebhookTemplateParams
impl Clone for UpdateWebhookTemplateParams
Source§fn clone(&self) -> UpdateWebhookTemplateParams
fn clone(&self) -> UpdateWebhookTemplateParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateWebhookTemplateParams
impl Debug for UpdateWebhookTemplateParams
Source§impl<'de> Deserialize<'de> for UpdateWebhookTemplateParams
impl<'de> Deserialize<'de> for UpdateWebhookTemplateParams
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 UpdateWebhookTemplateParams
impl RefUnwindSafe for UpdateWebhookTemplateParams
impl Send for UpdateWebhookTemplateParams
impl Sync for UpdateWebhookTemplateParams
impl Unpin for UpdateWebhookTemplateParams
impl UnsafeUnpin for UpdateWebhookTemplateParams
impl UnwindSafe for UpdateWebhookTemplateParams
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