Details of the carton/package being shipped.

Export

Carton

interface Carton {
    cartonIdentifiers?: ContainerIdentification[];
    cartonSequenceNumber: string;
    dimensions?: Dimensions;
    items: ContainerItem[];
    trackingNumber?: string;
    weight?: Weight;
}

Properties

cartonIdentifiers?: ContainerIdentification[]

A list of carton identifiers.

Memberof

Carton

cartonSequenceNumber: string

Carton sequence number for the carton. The first carton will be 001, the second 002, and so on. This number is used as a reference to refer to this carton from the pallet level.

Memberof

Carton

dimensions?: Dimensions

Memberof

Carton

items: ContainerItem[]

A list of container item details.

Memberof

Carton

trackingNumber?: string

This is required to be provided for every carton in the small parcel shipments.

Memberof

Carton

weight?: Weight

Memberof

Carton