The shipping option available for the offer.

ShippingOption

interface ShippingOption {
    price: MoneyType;
    shippingOptionType: "DEFAULT";
}

Properties

price: MoneyType

ShippingOption

shippingOptionType: "DEFAULT"

The type of shipping option.

ShippingOption