Struct amazon_sp_fulfillment_inbound::models::inbound_shipment_item::InboundShipmentItem
source · [−]pub struct InboundShipmentItem {
pub shipment_id: Option<String>,
pub seller_sku: String,
pub fulfillment_network_sku: Option<String>,
pub quantity_shipped: i32,
pub quantity_received: Option<i32>,
pub quantity_in_case: Option<i32>,
pub release_date: Option<String>,
pub prep_details_list: Option<Vec<PrepDetails>>,
}Expand description
InboundShipmentItem : Item information for an inbound shipment. Submitted with a call to the createInboundShipment or updateInboundShipment operation.
Fields
shipment_id: Option<String>A shipment identifier originally returned by the createInboundShipmentPlan operation.
seller_sku: StringThe seller SKU of the item.
fulfillment_network_sku: Option<String>Amazon’s fulfillment network SKU of the item.
quantity_shipped: i32The item quantity.
quantity_received: Option<i32>The item quantity.
quantity_in_case: Option<i32>The item quantity.
release_date: Option<String>prep_details_list: Option<Vec<PrepDetails>>A list of preparation instructions and who is responsible for that preparation.
Implementations
sourceimpl InboundShipmentItem
impl InboundShipmentItem
sourcepub fn new(seller_sku: String, quantity_shipped: i32) -> InboundShipmentItem
pub fn new(seller_sku: String, quantity_shipped: i32) -> InboundShipmentItem
Item information for an inbound shipment. Submitted with a call to the createInboundShipment or updateInboundShipment operation.
Trait Implementations
sourceimpl Clone for InboundShipmentItem
impl Clone for InboundShipmentItem
sourcefn clone(&self) -> InboundShipmentItem
fn clone(&self) -> InboundShipmentItem
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 InboundShipmentItem
impl Debug for InboundShipmentItem
sourceimpl Default for InboundShipmentItem
impl Default for InboundShipmentItem
sourcefn default() -> InboundShipmentItem
fn default() -> InboundShipmentItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InboundShipmentItem
impl<'de> Deserialize<'de> for InboundShipmentItem
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<InboundShipmentItem> for InboundShipmentItem
impl PartialEq<InboundShipmentItem> for InboundShipmentItem
sourcefn eq(&self, other: &InboundShipmentItem) -> bool
fn eq(&self, other: &InboundShipmentItem) -> bool
sourceimpl Serialize for InboundShipmentItem
impl Serialize for InboundShipmentItem
impl StructuralPartialEq for InboundShipmentItem
Auto Trait Implementations
impl RefUnwindSafe for InboundShipmentItem
impl Send for InboundShipmentItem
impl Sync for InboundShipmentItem
impl Unpin for InboundShipmentItem
impl UnwindSafe for InboundShipmentItem
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