pub struct InventorySummary {
pub asin: Option<String>,
pub fn_sku: Option<String>,
pub seller_sku: Option<String>,
pub condition: Option<String>,
pub inventory_details: Option<Box<InventoryDetails>>,
pub last_updated_time: Option<String>,
pub product_name: Option<String>,
pub total_quantity: Option<i32>,
pub stores: Option<Vec<String>>,
}Expand description
InventorySummary : Inventory summary for a specific item.
Fields§
§asin: Option<String>The Amazon Standard Identification Number (ASIN) of an item.
fn_sku: Option<String>Amazon’s fulfillment network SKU identifier.
seller_sku: Option<String>The seller SKU of the item.
condition: Option<String>The condition of the item as described by the seller (for example, New Item).
inventory_details: Option<Box<InventoryDetails>>§last_updated_time: Option<String>The date and time that any quantity was last updated.
product_name: Option<String>The localized language product title of the item within the specific marketplace.
total_quantity: Option<i32>The total number of units in an inbound shipment or in Amazon fulfillment centers.
stores: Option<Vec<String>>A list of seller-enrolled stores that apply to this seller SKU.
Implementations§
Source§impl InventorySummary
impl InventorySummary
Sourcepub fn new() -> InventorySummary
pub fn new() -> InventorySummary
Inventory summary for a specific item.
Trait Implementations§
Source§impl Clone for InventorySummary
impl Clone for InventorySummary
Source§fn clone(&self) -> InventorySummary
fn clone(&self) -> InventorySummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InventorySummary
impl Debug for InventorySummary
Source§impl Default for InventorySummary
impl Default for InventorySummary
Source§fn default() -> InventorySummary
fn default() -> InventorySummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InventorySummary
impl<'de> Deserialize<'de> for InventorySummary
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
Source§impl PartialEq for InventorySummary
impl PartialEq for InventorySummary
Source§impl Serialize for InventorySummary
impl Serialize for InventorySummary
impl StructuralPartialEq for InventorySummary
Auto Trait Implementations§
impl Freeze for InventorySummary
impl RefUnwindSafe for InventorySummary
impl Send for InventorySummary
impl Sync for InventorySummary
impl Unpin for InventorySummary
impl UnwindSafe for InventorySummary
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