pub struct OrderCustomAttributeDefinitionOwnedUpdatedEvent {
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<CustomAttributeDefinitionEventData>>,
}Expand description
OrderCustomAttributeDefinitionOwnedUpdatedEvent : Published when an order custom attribute definition that is owned by 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_definition.owned.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<CustomAttributeDefinitionEventData>>Implementations§
Source§impl OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl OrderCustomAttributeDefinitionOwnedUpdatedEvent
Sourcepub fn new() -> OrderCustomAttributeDefinitionOwnedUpdatedEvent
pub fn new() -> OrderCustomAttributeDefinitionOwnedUpdatedEvent
Published when an order custom attribute definition that is owned by the subscribing app is updated.
Trait Implementations§
Source§impl Clone for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl Clone for OrderCustomAttributeDefinitionOwnedUpdatedEvent
Source§fn clone(&self) -> OrderCustomAttributeDefinitionOwnedUpdatedEvent
fn clone(&self) -> OrderCustomAttributeDefinitionOwnedUpdatedEvent
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 OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl Default for OrderCustomAttributeDefinitionOwnedUpdatedEvent
Source§fn default() -> OrderCustomAttributeDefinitionOwnedUpdatedEvent
fn default() -> OrderCustomAttributeDefinitionOwnedUpdatedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl<'de> Deserialize<'de> for OrderCustomAttributeDefinitionOwnedUpdatedEvent
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 OrderCustomAttributeDefinitionOwnedUpdatedEvent
Auto Trait Implementations§
impl Freeze for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl RefUnwindSafe for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl Send for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl Sync for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl Unpin for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl UnsafeUnpin for OrderCustomAttributeDefinitionOwnedUpdatedEvent
impl UnwindSafe for OrderCustomAttributeDefinitionOwnedUpdatedEvent
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