pub struct PutWebhookInput {
pub tags: Option<Vec<Tag>>,
pub webhook: WebhookDefinition,
}
Fields§
The tags for the webhook.
webhook: WebhookDefinition
The detail provided in an input file to create the webhook, such as the webhook name, the pipeline name, and the action name. Give the webhook a unique name that helps you identify it. You might name the webhook after the pipeline and action it targets so that you can easily recognize what it's used for later.
Trait Implementations§
Source§impl Clone for PutWebhookInput
impl Clone for PutWebhookInput
Source§fn clone(&self) -> PutWebhookInput
fn clone(&self) -> PutWebhookInput
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 PutWebhookInput
impl Debug for PutWebhookInput
Source§impl Default for PutWebhookInput
impl Default for PutWebhookInput
Source§fn default() -> PutWebhookInput
fn default() -> PutWebhookInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutWebhookInput
impl PartialEq for PutWebhookInput
Source§impl Serialize for PutWebhookInput
impl Serialize for PutWebhookInput
impl StructuralPartialEq for PutWebhookInput
Auto Trait Implementations§
impl Freeze for PutWebhookInput
impl RefUnwindSafe for PutWebhookInput
impl Send for PutWebhookInput
impl Sync for PutWebhookInput
impl Unpin for PutWebhookInput
impl UnwindSafe for PutWebhookInput
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