Used when the ShippingRate maps to an abstract Cart categorization expressed by strings (for example, Light, Medium, or Heavy).

interface CartClassificationTier {
    isMatching?: boolean;
    price: _Money;
    type: "CartClassification";
    value: string;
}

Properties

isMatching?: boolean

Appears in response to Get ShippingMethods for a Cart if the shipping rate matches the search query.

price: _Money

Fixed shipping rate for the selected classification.

type: "CartClassification"
value: string

key selected from the values of the CartClassificationType configured in the Project.

Generated using TypeDoc