Struct mws::fulfillment_outbound::FulfillmentShipmentItem [] [src]

pub struct FulfillmentShipmentItem {
    pub SellerSKU: Option<String>,
    pub SellerFulfillmentOrderItemId: String,
    pub Quantity: i32,
    pub PackageNumber: Option<String>,
}

Item information for a shipment in a fulfillment order.

Fields

The seller SKU of the item.

The fulfillment order item identifier that you created and submitted with the CreateFulfillmentOrder operation.

The item quantity.

An identifier for the package that contains the item quantity.

Trait Implementations

impl Debug for FulfillmentShipmentItem
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for FulfillmentShipmentItem
[src]

[src]

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

impl PartialEq for FulfillmentShipmentItem
[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 FulfillmentShipmentItem
[src]

Auto Trait Implementations