pub struct AdjustmentItem {
pub quantity: Option<String>,
pub per_unit_amount: Option<Box<Currency>>,
pub total_amount: Option<Box<Currency>>,
pub seller_sku: Option<String>,
pub fn_sku: Option<String>,
pub product_description: Option<String>,
pub asin: Option<String>,
pub transaction_number: Option<String>,
}Expand description
AdjustmentItem : An item in an adjustment to the seller’s account.
Fields§
§quantity: Option<String>Represents the number of units in the seller’s inventory when the AdustmentType is FBAInventoryReimbursement.
per_unit_amount: Option<Box<Currency>>§total_amount: Option<Box<Currency>>§seller_sku: Option<String>The seller SKU of the item. The seller SKU is qualified by the seller’s seller ID, which is included with every call to the Selling Partner API.
fn_sku: Option<String>A unique identifier assigned to products stored in and fulfilled from a fulfillment center.
product_description: Option<String>A short description of the item.
asin: Option<String>The Amazon Standard Identification Number (ASIN) of the item.
transaction_number: Option<String>The transaction number that is related to the adjustment.
Implementations§
Source§impl AdjustmentItem
impl AdjustmentItem
Sourcepub fn new() -> AdjustmentItem
pub fn new() -> AdjustmentItem
An item in an adjustment to the seller’s account.
Trait Implementations§
Source§impl Clone for AdjustmentItem
impl Clone for AdjustmentItem
Source§fn clone(&self) -> AdjustmentItem
fn clone(&self) -> AdjustmentItem
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 AdjustmentItem
impl Debug for AdjustmentItem
Source§impl Default for AdjustmentItem
impl Default for AdjustmentItem
Source§fn default() -> AdjustmentItem
fn default() -> AdjustmentItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdjustmentItem
impl<'de> Deserialize<'de> for AdjustmentItem
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 AdjustmentItem
impl PartialEq for AdjustmentItem
Source§impl Serialize for AdjustmentItem
impl Serialize for AdjustmentItem
impl StructuralPartialEq for AdjustmentItem
Auto Trait Implementations§
impl Freeze for AdjustmentItem
impl RefUnwindSafe for AdjustmentItem
impl Send for AdjustmentItem
impl Sync for AdjustmentItem
impl Unpin for AdjustmentItem
impl UnwindSafe for AdjustmentItem
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