pub struct TriggerInstance {
pub id: String,
pub uuid: Option<String>,
pub trigger_name: String,
pub connected_account_id: String,
pub user_id: Option<String>,
pub trigger_config: Value,
pub state: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub disabled_at: Option<String>,
}Expand description
Trigger instance information
Fields§
§id: StringTrigger instance ID
uuid: Option<String>Trigger instance UUID
trigger_name: StringTrigger name/slug
connected_account_id: StringConnected account ID
user_id: Option<String>User ID
trigger_config: ValueTrigger configuration
state: Option<String>Trigger state
created_at: Option<String>Creation timestamp
updated_at: Option<String>Update timestamp
disabled_at: Option<String>Disabled timestamp
Trait Implementations§
Source§impl Clone for TriggerInstance
impl Clone for TriggerInstance
Source§fn clone(&self) -> TriggerInstance
fn clone(&self) -> TriggerInstance
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 TriggerInstance
impl Debug for TriggerInstance
Source§impl<'de> Deserialize<'de> for TriggerInstance
impl<'de> Deserialize<'de> for TriggerInstance
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 TriggerInstance
impl RefUnwindSafe for TriggerInstance
impl Send for TriggerInstance
impl Sync for TriggerInstance
impl Unpin for TriggerInstance
impl UnsafeUnpin for TriggerInstance
impl UnwindSafe for TriggerInstance
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