A carrier specific packaging code is used instead of a custom bag or box

interface CarrierSpecificPackaging {
    carrier: CarrierName;
    girth?: null | LengthInput;
    package_code: string;
    [field_name: string]: undefined | JsonValue;
}

Hierarchy (View Summary)

Indexable

Properties

carrier: CarrierName

The carrier that takes the packaging

girth?: null | LengthInput

The girth of the packaging when filled, if the packaging is a bag/envelope

package_code: string

The package code of the carrier-specific packaging

See TODO