interface ApplePaySummaryItem {
    label: string;
    amount: number;
    type?: "pending" | "final";
}

Properties

Properties

label: string

Required: Label shown in the Apple Pay sheet.

amount: number

Required: Integer amount in cents (e.g., 1999 for 19.99). Do not pass decimal strings; always use integer cents.

type?: "pending" | "final"

Optional: "final" | "pending". Default: "final" when omitted.