Struct mws::fulfillment_outbound::CreateFulfillmentOrderParameters [] [src]

pub struct CreateFulfillmentOrderParameters {
    pub SellerFulfillmentOrderId: String,
    pub ShippingSpeedCategory: ShippingSpeedCategory,
    pub DisplayableOrderId: String,
    pub DisplayableOrderDateTime: DateTime<Utc>,
    pub DisplayableOrderComment: String,
    pub DestinationAddress: DestinationAddress,
    pub Items: Vec<CreateFulfillmentOrderItem>,
    pub MarketplaceId: Option<String>,
    pub ShipFromCountryCode: Option<String>,
    pub FulfillmentPolicy: Option<FulfillmentPolicy>,
    pub FulfillmentAction: Option<FulfillmentAction>,
    pub NotificationEmailList: Option<Vec<String>>,
}

Parameters for CreateFulfillmentOrder

Fields

Trait Implementations

impl Debug for CreateFulfillmentOrderParameters
[src]

[src]

Formats the value using the given formatter. Read more

impl Into<Vec<(String, String)>> for CreateFulfillmentOrderParameters
[src]

Important traits for Vec<u8>
[src]

Performs the conversion.

Auto Trait Implementations