Struct amazon_sp_fulfillment_outbound::models::create_fulfillment_order_item::CreateFulfillmentOrderItem
source · [−]pub struct CreateFulfillmentOrderItem {
pub seller_sku: String,
pub seller_fulfillment_order_item_id: String,
pub quantity: i32,
pub gift_message: Option<String>,
pub displayable_comment: Option<String>,
pub fulfillment_network_sku: Option<String>,
pub per_unit_declared_value: Option<Box<Money>>,
pub per_unit_price: Option<Box<Money>>,
pub per_unit_tax: Option<Box<Money>>,
}Expand description
CreateFulfillmentOrderItem : Item information for creating a fulfillment order.
Fields
seller_sku: StringThe seller SKU of the item.
seller_fulfillment_order_item_id: StringA fulfillment order item identifier that the seller creates to track fulfillment order items. Used to disambiguate multiple fulfillment items that have the same SellerSKU. For example, the seller might assign different SellerFulfillmentOrderItemId values to two items in a fulfillment order that share the same SellerSKU but have different GiftMessage values.
quantity: i32The item quantity.
gift_message: Option<String>A message to the gift recipient, if applicable.
displayable_comment: Option<String>Item-specific text that displays in recipient-facing materials such as the outbound shipment packing slip.
fulfillment_network_sku: Option<String>Amazon’s fulfillment network SKU of the item.
per_unit_declared_value: Option<Box<Money>>per_unit_price: Option<Box<Money>>per_unit_tax: Option<Box<Money>>Implementations
Trait Implementations
sourceimpl Clone for CreateFulfillmentOrderItem
impl Clone for CreateFulfillmentOrderItem
sourcefn clone(&self) -> CreateFulfillmentOrderItem
fn clone(&self) -> CreateFulfillmentOrderItem
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 CreateFulfillmentOrderItem
impl Debug for CreateFulfillmentOrderItem
sourceimpl Default for CreateFulfillmentOrderItem
impl Default for CreateFulfillmentOrderItem
sourcefn default() -> CreateFulfillmentOrderItem
fn default() -> CreateFulfillmentOrderItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CreateFulfillmentOrderItem
impl<'de> Deserialize<'de> for CreateFulfillmentOrderItem
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<CreateFulfillmentOrderItem> for CreateFulfillmentOrderItem
impl PartialEq<CreateFulfillmentOrderItem> for CreateFulfillmentOrderItem
sourcefn eq(&self, other: &CreateFulfillmentOrderItem) -> bool
fn eq(&self, other: &CreateFulfillmentOrderItem) -> bool
impl StructuralPartialEq for CreateFulfillmentOrderItem
Auto Trait Implementations
impl RefUnwindSafe for CreateFulfillmentOrderItem
impl Send for CreateFulfillmentOrderItem
impl Sync for CreateFulfillmentOrderItem
impl Unpin for CreateFulfillmentOrderItem
impl UnwindSafe for CreateFulfillmentOrderItem
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