Shipment details required for the shipment.

Export

ShipmentDetails

interface ShipmentDetails {
    isGift?: boolean;
    isPriorityShipment: boolean;
    isPslipRequired: boolean;
    isScheduledDeliveryShipment?: boolean;
    messageToCustomer: string;
    shipMethod: string;
    shipmentDates: ShipmentDates;
}

Properties

isGift?: boolean

When true, the order contain a gift. Include the gift message and gift wrap information.

Memberof

ShipmentDetails

isPriorityShipment: boolean

When true, this is a priority shipment.

Memberof

ShipmentDetails

isPslipRequired: boolean

When true, a packing slip is required to be sent to the customer.

Memberof

ShipmentDetails

isScheduledDeliveryShipment?: boolean

When true, this order is part of a scheduled delivery program.

Memberof

ShipmentDetails

messageToCustomer: string

Message to customer for order status.

Memberof

ShipmentDetails

shipMethod: string

Ship method to be used for shipping the order. Amazon defines ship method codes indicating the shipping carrier and shipment service level. To see the full list of ship methods in use, including both the code and the friendly name, search the 'Help' section on Vendor Central for 'ship methods'.

Memberof

ShipmentDetails

shipmentDates: ShipmentDates

Memberof

ShipmentDetails