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