Struct mws::fulfillment_outbound::FulfillmentPreviewItem [] [src]

pub struct FulfillmentPreviewItem {
    pub SellerSKU: String,
    pub SellerFulfillmentOrderItemId: String,
    pub Quantity: i32,
    pub EstimatedShippingWeight: Option<Weight>,
    pub ShippingWeightCalculationMethod: Option<String>,
}

Item information for a shipment in a fulfillment order preview.

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.

The estimated shipping weight of the item quantity for a single item, as identified by SellerSKU, in a shipment.

The method used to calculate EstimatedShippingWeight.

Trait Implementations

impl Debug for FulfillmentPreviewItem
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for FulfillmentPreviewItem
[src]

[src]

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

impl PartialEq for FulfillmentPreviewItem
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<S: XmlEventStream> FromXMLStream<S> for FulfillmentPreviewItem
[src]

Auto Trait Implementations