Type Alias Shipment_2

Shipment_2: {
    customs_fees_possible: boolean;
    departure_country: string | null;
    shipment_items: ShipmentItem_2[];
}

Basic info about the shipment.

Type declaration

  • customs_fees_possible: boolean

    Whether customs fees may be required for this shipment.

  • departure_country: string | null

    Two-letter code (ISO 3166-1 alpha-2) associated with the departure country.

  • shipment_items: ShipmentItem_2[]

    List of items included in the shipment.