pub struct RemovalShipmentEvent {
pub posted_date: Option<String>,
pub merchant_order_id: Option<String>,
pub order_id: Option<String>,
pub transaction_type: Option<String>,
pub removal_shipment_item_list: Option<Vec<RemovalShipmentItem>>,
}Expand description
RemovalShipmentEvent : A removal shipment event for a removal order.
Fields
posted_date: Option<String>merchant_order_id: Option<String>The merchant removal orderId.
order_id: Option<String>The identifier for the removal shipment order.
transaction_type: Option<String>The type of removal order. Possible values: * WHOLESALE_LIQUIDATION
removal_shipment_item_list: Option<Vec<RemovalShipmentItem>>A list of information about removal shipment items.
Implementations
sourceimpl RemovalShipmentEvent
impl RemovalShipmentEvent
sourcepub fn new() -> RemovalShipmentEvent
pub fn new() -> RemovalShipmentEvent
A removal shipment event for a removal order.
Trait Implementations
sourceimpl Clone for RemovalShipmentEvent
impl Clone for RemovalShipmentEvent
sourcefn clone(&self) -> RemovalShipmentEvent
fn clone(&self) -> RemovalShipmentEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RemovalShipmentEvent
impl Debug for RemovalShipmentEvent
sourceimpl Default for RemovalShipmentEvent
impl Default for RemovalShipmentEvent
sourcefn default() -> RemovalShipmentEvent
fn default() -> RemovalShipmentEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for RemovalShipmentEvent
impl<'de> Deserialize<'de> for RemovalShipmentEvent
sourcefn 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
sourceimpl PartialEq<RemovalShipmentEvent> for RemovalShipmentEvent
impl PartialEq<RemovalShipmentEvent> for RemovalShipmentEvent
sourcefn eq(&self, other: &RemovalShipmentEvent) -> bool
fn eq(&self, other: &RemovalShipmentEvent) -> bool
sourceimpl Serialize for RemovalShipmentEvent
impl Serialize for RemovalShipmentEvent
impl StructuralPartialEq for RemovalShipmentEvent
Auto Trait Implementations
impl RefUnwindSafe for RemovalShipmentEvent
impl Send for RemovalShipmentEvent
impl Sync for RemovalShipmentEvent
impl Unpin for RemovalShipmentEvent
impl UnwindSafe for RemovalShipmentEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more