The available rate that can be used to send the shipment

Rate

interface Rate {
    billedWeight?: Weight;
    expirationTime?: string;
    promise?: ShippingPromiseSet;
    rateId?: string;
    serviceType?: ServiceType;
    totalCharge?: Currency;
}

Properties

billedWeight?: Weight

Rate

expirationTime?: string

The time after which the offering will expire.

Rate

Rate

rateId?: string

An identifier for the rate.

Rate

serviceType?: ServiceType

Rate

totalCharge?: Currency

Rate