pub struct MerchantSettingsUpdatedEvent {
pub merchant_id: Option<Option<String>>,
pub type: Option<Option<String>>,
pub event_id: Option<Option<String>>,
pub created_at: Option<String>,
pub data: Option<Box<MerchantSettingsUpdatedEventData>>,
}Expand description
MerchantSettingsUpdatedEvent : Published when online checkout merchant settings are updated
Fields§
§merchant_id: Option<Option<String>>The ID of the target merchant associated with the event.
type: Option<Option<String>>The type of event this represents, \"online_checkout.merchant_settings.updated\".
event_id: Option<Option<String>>A unique ID for the event.
created_at: Option<String>RFC 3339 timestamp of when the event was created.
data: Option<Box<MerchantSettingsUpdatedEventData>>Implementations§
Source§impl MerchantSettingsUpdatedEvent
impl MerchantSettingsUpdatedEvent
Sourcepub fn new() -> MerchantSettingsUpdatedEvent
pub fn new() -> MerchantSettingsUpdatedEvent
Published when online checkout merchant settings are updated
Trait Implementations§
Source§impl Clone for MerchantSettingsUpdatedEvent
impl Clone for MerchantSettingsUpdatedEvent
Source§fn clone(&self) -> MerchantSettingsUpdatedEvent
fn clone(&self) -> MerchantSettingsUpdatedEvent
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 MerchantSettingsUpdatedEvent
impl Debug for MerchantSettingsUpdatedEvent
Source§impl Default for MerchantSettingsUpdatedEvent
impl Default for MerchantSettingsUpdatedEvent
Source§fn default() -> MerchantSettingsUpdatedEvent
fn default() -> MerchantSettingsUpdatedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MerchantSettingsUpdatedEvent
impl<'de> Deserialize<'de> for MerchantSettingsUpdatedEvent
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
impl StructuralPartialEq for MerchantSettingsUpdatedEvent
Auto Trait Implementations§
impl Freeze for MerchantSettingsUpdatedEvent
impl RefUnwindSafe for MerchantSettingsUpdatedEvent
impl Send for MerchantSettingsUpdatedEvent
impl Sync for MerchantSettingsUpdatedEvent
impl Unpin for MerchantSettingsUpdatedEvent
impl UnsafeUnpin for MerchantSettingsUpdatedEvent
impl UnwindSafe for MerchantSettingsUpdatedEvent
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