Struct amazon_sp_fulfillment_inbound::models::inbound_shipment_plan_request_item::InboundShipmentPlanRequestItem
source · [−]pub struct InboundShipmentPlanRequestItem {
pub seller_sku: String,
pub ASIN: String,
pub condition: Condition,
pub quantity: i32,
pub quantity_in_case: Option<i32>,
pub prep_details_list: Option<Vec<PrepDetails>>,
}Expand description
InboundShipmentPlanRequestItem : Item information for creating an inbound shipment plan. Submitted with a call to the createInboundShipmentPlan operation.
Fields
seller_sku: StringThe seller SKU of the item.
ASIN: StringThe Amazon Standard Identification Number (ASIN) of the item.
condition: Conditionquantity: i32The item quantity.
quantity_in_case: Option<i32>The item quantity.
prep_details_list: Option<Vec<PrepDetails>>A list of preparation instructions and who is responsible for that preparation.
Implementations
Trait Implementations
sourceimpl Clone for InboundShipmentPlanRequestItem
impl Clone for InboundShipmentPlanRequestItem
sourcefn clone(&self) -> InboundShipmentPlanRequestItem
fn clone(&self) -> InboundShipmentPlanRequestItem
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 Default for InboundShipmentPlanRequestItem
impl Default for InboundShipmentPlanRequestItem
sourcefn default() -> InboundShipmentPlanRequestItem
fn default() -> InboundShipmentPlanRequestItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for InboundShipmentPlanRequestItem
impl<'de> Deserialize<'de> for InboundShipmentPlanRequestItem
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<InboundShipmentPlanRequestItem> for InboundShipmentPlanRequestItem
impl PartialEq<InboundShipmentPlanRequestItem> for InboundShipmentPlanRequestItem
sourcefn eq(&self, other: &InboundShipmentPlanRequestItem) -> bool
fn eq(&self, other: &InboundShipmentPlanRequestItem) -> bool
impl StructuralPartialEq for InboundShipmentPlanRequestItem
Auto Trait Implementations
impl RefUnwindSafe for InboundShipmentPlanRequestItem
impl Send for InboundShipmentPlanRequestItem
impl Sync for InboundShipmentPlanRequestItem
impl Unpin for InboundShipmentPlanRequestItem
impl UnwindSafe for InboundShipmentPlanRequestItem
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