The Amazon fulfillment center address and warehouse ID.

ShipmentDestination

interface ShipmentDestination {
    address?: Address;
    destinationType: string;
    warehouseId?: string;
}

Properties

address?: Address

ShipmentDestination

destinationType: string

The type of destination for this shipment. Possible values: AMAZON_OPTIMIZED, AMAZON_WAREHOUSE.

ShipmentDestination

warehouseId?: string

The warehouse that the shipment should be sent to. Empty if the destination type is AMAZON_OPTIMIZED.

ShipmentDestination