The specific rate for a shipping service, or null if no service available.

ServiceRate

interface ServiceRate {
    billableWeight: Weight;
    promise: ShippingPromiseSet;
    serviceType: ServiceType;
    totalCharge: Currency;
}

Properties

billableWeight: Weight

ServiceRate

ServiceRate

serviceType: ServiceType

ServiceRate

totalCharge: Currency

ServiceRate