A container used for shipping and packing items.

Container

interface Container {
    carrier?: string;
    containerIdentifier: string;
    containerSequenceNumber?: number;
    containerType: ContainerContainerTypeEnum;
    dimensions?: Dimensions;
    manifestDate?: string;
    manifestId?: string;
    packedItems: PackedItem[];
    scacCode?: string;
    shipMethod?: string;
    trackingNumber?: string;
    weight: Weight;
}

Properties

carrier?: string

Carrier required for EU VOC vendors only.

Container

containerIdentifier: string

The container identifier.

Container

containerSequenceNumber?: number

An integer that must be submitted for multi-box shipments only, where one item may come in separate packages.

Container

The type of container.

Container

dimensions?: Dimensions

Container

manifestDate?: string

The date of the manifest.

Container

manifestId?: string

The manifest identifier.

Container

packedItems: PackedItem[]

A list of packed items.

Container

scacCode?: string

SCAC code required for NA VOC vendors only.

Container

shipMethod?: string

The shipment method. This property is required when calling the submitShipmentConfirmations operation, and optional otherwise.

Container

trackingNumber?: string

The tracking number.

Container

weight: Weight

Container