pub struct OrderCustomAttributeVisibleDeletedEvent {
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
OrderCustomAttributeVisibleDeletedEvent : Published when an order custom attribute that is visible to the subscribing app is deleted.
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.deleted\".
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 OrderCustomAttributeVisibleDeletedEvent
impl OrderCustomAttributeVisibleDeletedEvent
Sourcepub fn new() -> OrderCustomAttributeVisibleDeletedEvent
pub fn new() -> OrderCustomAttributeVisibleDeletedEvent
Published when an order custom attribute that is visible to the subscribing app is deleted.
Trait Implementations§
Source§impl Clone for OrderCustomAttributeVisibleDeletedEvent
impl Clone for OrderCustomAttributeVisibleDeletedEvent
Source§fn clone(&self) -> OrderCustomAttributeVisibleDeletedEvent
fn clone(&self) -> OrderCustomAttributeVisibleDeletedEvent
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 OrderCustomAttributeVisibleDeletedEvent
impl Default for OrderCustomAttributeVisibleDeletedEvent
Source§fn default() -> OrderCustomAttributeVisibleDeletedEvent
fn default() -> OrderCustomAttributeVisibleDeletedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderCustomAttributeVisibleDeletedEvent
impl<'de> Deserialize<'de> for OrderCustomAttributeVisibleDeletedEvent
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 OrderCustomAttributeVisibleDeletedEvent
Auto Trait Implementations§
impl Freeze for OrderCustomAttributeVisibleDeletedEvent
impl RefUnwindSafe for OrderCustomAttributeVisibleDeletedEvent
impl Send for OrderCustomAttributeVisibleDeletedEvent
impl Sync for OrderCustomAttributeVisibleDeletedEvent
impl Unpin for OrderCustomAttributeVisibleDeletedEvent
impl UnsafeUnpin for OrderCustomAttributeVisibleDeletedEvent
impl UnwindSafe for OrderCustomAttributeVisibleDeletedEvent
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