pub struct WebhookUpdateProperties {
pub is_enabled: Option<bool>,
pub run_on: Option<String>,
pub parameters: Option<Value>,
pub description: Option<String>,
}Expand description
The properties of the update webhook.
Fields§
§is_enabled: Option<bool>Gets or sets the value of the enabled flag of webhook.
run_on: Option<String>Gets or sets the name of the hybrid worker group the webhook job will run on.
parameters: Option<Value>Gets or sets the parameters of the job.
description: Option<String>Gets or sets the description of the webhook.
Implementations§
Trait Implementations§
Source§impl Clone for WebhookUpdateProperties
impl Clone for WebhookUpdateProperties
Source§fn clone(&self) -> WebhookUpdateProperties
fn clone(&self) -> WebhookUpdateProperties
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 WebhookUpdateProperties
impl Debug for WebhookUpdateProperties
Source§impl Default for WebhookUpdateProperties
impl Default for WebhookUpdateProperties
Source§fn default() -> WebhookUpdateProperties
fn default() -> WebhookUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookUpdateProperties
impl<'de> Deserialize<'de> for WebhookUpdateProperties
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
Source§impl PartialEq for WebhookUpdateProperties
impl PartialEq for WebhookUpdateProperties
Source§impl Serialize for WebhookUpdateProperties
impl Serialize for WebhookUpdateProperties
impl StructuralPartialEq for WebhookUpdateProperties
Auto Trait Implementations§
impl Freeze for WebhookUpdateProperties
impl RefUnwindSafe for WebhookUpdateProperties
impl Send for WebhookUpdateProperties
impl Sync for WebhookUpdateProperties
impl Unpin for WebhookUpdateProperties
impl UnwindSafe for WebhookUpdateProperties
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