pub struct FbaLiquidationEvent {
pub posted_date: Option<String>,
pub original_removal_order_id: Option<String>,
pub liquidation_proceeds_amount: Option<Box<Currency>>,
pub liquidation_fee_amount: Option<Box<Currency>>,
}Expand description
FbaLiquidationEvent : A payment event for Fulfillment by Amazon (FBA) inventory liquidation. This event is used only in the US marketplace.
Fields
posted_date: Option<String>original_removal_order_id: Option<String>The identifier for the original removal order.
liquidation_proceeds_amount: Option<Box<Currency>>liquidation_fee_amount: Option<Box<Currency>>Implementations
sourceimpl FbaLiquidationEvent
impl FbaLiquidationEvent
sourcepub fn new() -> FbaLiquidationEvent
pub fn new() -> FbaLiquidationEvent
A payment event for Fulfillment by Amazon (FBA) inventory liquidation. This event is used only in the US marketplace.
Trait Implementations
sourceimpl Clone for FbaLiquidationEvent
impl Clone for FbaLiquidationEvent
sourcefn clone(&self) -> FbaLiquidationEvent
fn clone(&self) -> FbaLiquidationEvent
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 FbaLiquidationEvent
impl Debug for FbaLiquidationEvent
sourceimpl Default for FbaLiquidationEvent
impl Default for FbaLiquidationEvent
sourcefn default() -> FbaLiquidationEvent
fn default() -> FbaLiquidationEvent
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FbaLiquidationEvent
impl<'de> Deserialize<'de> for FbaLiquidationEvent
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<FbaLiquidationEvent> for FbaLiquidationEvent
impl PartialEq<FbaLiquidationEvent> for FbaLiquidationEvent
sourcefn eq(&self, other: &FbaLiquidationEvent) -> bool
fn eq(&self, other: &FbaLiquidationEvent) -> bool
sourceimpl Serialize for FbaLiquidationEvent
impl Serialize for FbaLiquidationEvent
impl StructuralPartialEq for FbaLiquidationEvent
Auto Trait Implementations
impl RefUnwindSafe for FbaLiquidationEvent
impl Send for FbaLiquidationEvent
impl Sync for FbaLiquidationEvent
impl Unpin for FbaLiquidationEvent
impl UnwindSafe for FbaLiquidationEvent
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