A group of one-time-price items in the Checkout order summary.

interface OneTimePriceOrderSummaryItem {
    type: "one_time_price";
    key: string;
    description?: string;
    items: OneTimePriceItem[];
    amountDetails: AmountDetails;
}

Properties

type: "one_time_price"

Identifies this as a one-time-price group.

key: string

A stable key for this order summary item.

description?: string

An optional description.

The individual items in this group.

amountDetails: AmountDetails

Aggregate amounts for this group.