pub struct OrderCustomAttributeVisibleUpdatedEvent {
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<CustomAttributeEventData>>,
}Expand description
OrderCustomAttributeVisibleUpdatedEvent : Published when an order custom attribute that is visible to the subscribing app is updated.
Fields§
§merchant_id: Option<Option<String>>The ID of the target seller associated with the event.
type: Option<Option<String>>The type of this event. The value is \"order.custom_attribute.visible.updated\".
event_id: Option<Option<String>>A unique ID for the event.
created_at: Option<String>The timestamp of when the event was created, in RFC 3339 format.
data: Option<Box<CustomAttributeEventData>>Implementations§
Source§impl OrderCustomAttributeVisibleUpdatedEvent
impl OrderCustomAttributeVisibleUpdatedEvent
Sourcepub fn new() -> OrderCustomAttributeVisibleUpdatedEvent
pub fn new() -> OrderCustomAttributeVisibleUpdatedEvent
Published when an order custom attribute that is visible to the subscribing app is updated.
Trait Implementations§
Source§impl Clone for OrderCustomAttributeVisibleUpdatedEvent
impl Clone for OrderCustomAttributeVisibleUpdatedEvent
Source§fn clone(&self) -> OrderCustomAttributeVisibleUpdatedEvent
fn clone(&self) -> OrderCustomAttributeVisibleUpdatedEvent
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 Default for OrderCustomAttributeVisibleUpdatedEvent
impl Default for OrderCustomAttributeVisibleUpdatedEvent
Source§fn default() -> OrderCustomAttributeVisibleUpdatedEvent
fn default() -> OrderCustomAttributeVisibleUpdatedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderCustomAttributeVisibleUpdatedEvent
impl<'de> Deserialize<'de> for OrderCustomAttributeVisibleUpdatedEvent
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 OrderCustomAttributeVisibleUpdatedEvent
Auto Trait Implementations§
impl Freeze for OrderCustomAttributeVisibleUpdatedEvent
impl RefUnwindSafe for OrderCustomAttributeVisibleUpdatedEvent
impl Send for OrderCustomAttributeVisibleUpdatedEvent
impl Sync for OrderCustomAttributeVisibleUpdatedEvent
impl Unpin for OrderCustomAttributeVisibleUpdatedEvent
impl UnsafeUnpin for OrderCustomAttributeVisibleUpdatedEvent
impl UnwindSafe for OrderCustomAttributeVisibleUpdatedEvent
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