The carrier for the inbound shipment.

Carrier

interface Carrier {
    alphaCode?: string;
    name?: string;
}

Properties

Properties

alphaCode?: string

The carrier code. For example, USPS or DHLEX.

Carrier

name?: string

The name of the carrier.

Carrier