An object representing an excluded benefit that is excluded for a shipping offer or rate.

ExcludedBenefit

interface ExcludedBenefit {
    Benefit?: string;
    ReasonCodes?: string[];
}

Properties

Benefit?: string

A benefit that is being excluded from a shipment.

ExcludedBenefit

ReasonCodes?: string[]

List of reasons why a benefit is excluded for a shipping offer (for example, LATE_DELIVERY_RISK).

ExcludedBenefit