Specifies the 'ship from' address for the shipment.

ShipmentSource

interface ShipmentSource {
    address?: Address;
    sourceType: string;
}

Properties

Properties

address?: Address

ShipmentSource

sourceType: string

The type of source for this shipment. Possible values: SELLER_FACILITY.

ShipmentSource