Shipment details required for the shipment.

ShipmentDetails

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

Properties

isGift?: boolean

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

ShipmentDetails

isPriorityShipment: boolean

When true, this is a priority shipment.

ShipmentDetails

isPslipRequired: boolean

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

ShipmentDetails

isScheduledDeliveryShipment?: boolean

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

ShipmentDetails

messageToCustomer: string

Message to customer for order status.

ShipmentDetails

shipmentDates: ShipmentDates

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'.

ShipmentDetails