Struct amazon_sp_fulfillment_outbound::models::update_fulfillment_order_item::UpdateFulfillmentOrderItem
source · [−]pub struct UpdateFulfillmentOrderItem {
pub seller_sku: Option<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 order_item_disposition: 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
UpdateFulfillmentOrderItem : Item information for updating a fulfillment order.
Fields
seller_sku: Option<String>The seller SKU of the item.
seller_fulfillment_order_item_id: StringIdentifies the fulfillment order item to update. Created with a previous call to the createFulfillmentOrder operation.
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.
order_item_disposition: Option<String>Indicates whether the item is sellable or unsellable.
per_unit_declared_value: Option<Box<Money>>per_unit_price: Option<Box<Money>>per_unit_tax: Option<Box<Money>>Implementations
sourceimpl UpdateFulfillmentOrderItem
impl UpdateFulfillmentOrderItem
sourcepub fn new(
seller_fulfillment_order_item_id: String,
quantity: i32
) -> UpdateFulfillmentOrderItem
pub fn new(
seller_fulfillment_order_item_id: String,
quantity: i32
) -> UpdateFulfillmentOrderItem
Item information for updating a fulfillment order.
Trait Implementations
sourceimpl Clone for UpdateFulfillmentOrderItem
impl Clone for UpdateFulfillmentOrderItem
sourcefn clone(&self) -> UpdateFulfillmentOrderItem
fn clone(&self) -> UpdateFulfillmentOrderItem
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 UpdateFulfillmentOrderItem
impl Debug for UpdateFulfillmentOrderItem
sourceimpl Default for UpdateFulfillmentOrderItem
impl Default for UpdateFulfillmentOrderItem
sourcefn default() -> UpdateFulfillmentOrderItem
fn default() -> UpdateFulfillmentOrderItem
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for UpdateFulfillmentOrderItem
impl<'de> Deserialize<'de> for UpdateFulfillmentOrderItem
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<UpdateFulfillmentOrderItem> for UpdateFulfillmentOrderItem
impl PartialEq<UpdateFulfillmentOrderItem> for UpdateFulfillmentOrderItem
sourcefn eq(&self, other: &UpdateFulfillmentOrderItem) -> bool
fn eq(&self, other: &UpdateFulfillmentOrderItem) -> bool
impl StructuralPartialEq for UpdateFulfillmentOrderItem
Auto Trait Implementations
impl RefUnwindSafe for UpdateFulfillmentOrderItem
impl Send for UpdateFulfillmentOrderItem
impl Sync for UpdateFulfillmentOrderItem
impl Unpin for UpdateFulfillmentOrderItem
impl UnwindSafe for UpdateFulfillmentOrderItem
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