pub struct CatalogVersionUpdatedEvent {
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<CatalogVersionUpdatedEventData>>,
}Expand description
CatalogVersionUpdatedEvent : Published when the catalog is 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.
event_id: Option<Option<String>>A unique ID for the event.
created_at: Option<String>Timestamp of when the event was created, in RFC 3339 format.
data: Option<Box<CatalogVersionUpdatedEventData>>Implementations§
Source§impl CatalogVersionUpdatedEvent
impl CatalogVersionUpdatedEvent
Sourcepub fn new() -> CatalogVersionUpdatedEvent
pub fn new() -> CatalogVersionUpdatedEvent
Published when the catalog is updated.
Trait Implementations§
Source§impl Clone for CatalogVersionUpdatedEvent
impl Clone for CatalogVersionUpdatedEvent
Source§fn clone(&self) -> CatalogVersionUpdatedEvent
fn clone(&self) -> CatalogVersionUpdatedEvent
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 CatalogVersionUpdatedEvent
impl Debug for CatalogVersionUpdatedEvent
Source§impl Default for CatalogVersionUpdatedEvent
impl Default for CatalogVersionUpdatedEvent
Source§fn default() -> CatalogVersionUpdatedEvent
fn default() -> CatalogVersionUpdatedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CatalogVersionUpdatedEvent
impl<'de> Deserialize<'de> for CatalogVersionUpdatedEvent
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 CatalogVersionUpdatedEvent
Auto Trait Implementations§
impl Freeze for CatalogVersionUpdatedEvent
impl RefUnwindSafe for CatalogVersionUpdatedEvent
impl Send for CatalogVersionUpdatedEvent
impl Sync for CatalogVersionUpdatedEvent
impl Unpin for CatalogVersionUpdatedEvent
impl UnsafeUnpin for CatalogVersionUpdatedEvent
impl UnwindSafe for CatalogVersionUpdatedEvent
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