Interface ShippingOption

One shipping option.

interface ShippingOption {
    @type: "shippingOption";
    id: string;
    price_parts: LabeledPricePart[];
    title: string;
}

Properties

@type: "shippingOption"
id: string

Shipping option identifier.

price_parts: LabeledPricePart[]

A list of objects used to calculate the total shipping costs.

title: string

Option title.