Struct mws::fulfillment_outbound::CreateFulfillmentOrderItem [] [src]

pub struct CreateFulfillmentOrderItem {
    pub SellerSKU: String,
    pub SellerFulfillmentOrderItemId: String,
    pub Quantity: i32,
    pub GiftMessage: Option<String>,
    pub DisplayableComment: Option<String>,
    pub FulfillmentNetworkSKU: Option<String>,
    pub PerUnitDeclaredValue: Option<Currency>,
    pub PerUnitPrice: Option<Currency>,
    pub PerUnitTax: Option<Currency>,
}

Item information for creating a fulfillment order.

Fields

The seller SKU of the item.

A fulfillment order item identifier that you created with a call to the GetFulfillmentPreview operation.

The item quantity.

A message to the gift recipient, if applicable.

Item-specific text that displays in recipient-facing materials such as the outbound shipment packing slip.

Amazon's fulfillment network SKU of the item.

The monetary value assigned by the seller to this item.

The amount to be collected from the customer for this item in a COD (Cash On Delivery) order.

The tax on the amount to be collected from the customer for this item in a COD (Cash On Delivery) order.

Trait Implementations

impl Debug for CreateFulfillmentOrderItem
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for CreateFulfillmentOrderItem
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations