Interface LabeledPricePart

Portion of the price of a product (e.g., "delivery cost", "tax amount").

interface LabeledPricePart {
    @type: "labeledPricePart";
    amount: number;
    label: string;
}

Properties

Properties

@type: "labeledPricePart"
amount: number

Currency amount in the smallest units of the currency.

label: string

Label for this portion of the product price.