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