pub struct OrderItem {
pub item_sequence_number: String,
pub buyer_product_identifier: Option<String>,
pub vendor_product_identifier: Option<String>,
pub title: Option<String>,
pub ordered_quantity: Box<ItemQuantity>,
pub scheduled_delivery_shipment: Option<Box<ScheduledDeliveryShipment>>,
pub gift_details: Option<Box<GiftDetails>>,
pub net_price: Box<Money>,
pub tax_details: Option<Box<OrderItemTaxDetails>>,
pub total_price: Option<Box<Money>>,
}Fields
item_sequence_number: StringNumbering of the item on the purchase order. The first item will be 1, the second 2, and so on.
buyer_product_identifier: Option<String>Buyer’s standard identification number (ASIN) of an item.
vendor_product_identifier: Option<String>The vendor selected product identification of the item.
title: Option<String>Title for the item.
ordered_quantity: Box<ItemQuantity>scheduled_delivery_shipment: Option<Box<ScheduledDeliveryShipment>>gift_details: Option<Box<GiftDetails>>net_price: Box<Money>tax_details: Option<Box<OrderItemTaxDetails>>total_price: Option<Box<Money>>Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for OrderItem
impl<'de> Deserialize<'de> for OrderItem
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
impl StructuralPartialEq for OrderItem
Auto Trait Implementations
impl RefUnwindSafe for OrderItem
impl Send for OrderItem
impl Sync for OrderItem
impl Unpin for OrderItem
impl UnwindSafe for OrderItem
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