Struct amazon_sp_finances::models::adjustment_item::AdjustmentItem
source · [−]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>,
}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.
Implementations
sourceimpl AdjustmentItem
impl AdjustmentItem
sourcepub fn new() -> AdjustmentItem
pub fn new() -> AdjustmentItem
An item in an adjustment to the seller’s account.
Trait Implementations
sourceimpl Clone for AdjustmentItem
impl Clone for AdjustmentItem
sourcefn clone(&self) -> AdjustmentItem
fn clone(&self) -> AdjustmentItem
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 AdjustmentItem
impl Debug for AdjustmentItem
sourceimpl Default for AdjustmentItem
impl Default for AdjustmentItem
sourcefn default() -> AdjustmentItem
fn default() -> AdjustmentItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AdjustmentItem
impl<'de> Deserialize<'de> for AdjustmentItem
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<AdjustmentItem> for AdjustmentItem
impl PartialEq<AdjustmentItem> for AdjustmentItem
sourcefn eq(&self, other: &AdjustmentItem) -> bool
fn eq(&self, other: &AdjustmentItem) -> bool
sourceimpl Serialize for AdjustmentItem
impl Serialize for AdjustmentItem
impl StructuralPartialEq for AdjustmentItem
Auto Trait Implementations
impl RefUnwindSafe for AdjustmentItem
impl Send for AdjustmentItem
impl Sync for AdjustmentItem
impl Unpin for AdjustmentItem
impl UnwindSafe for AdjustmentItem
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