RecurringCartSummaryItem: {
    paymentType: Recurring;
    intervalUnit: IntervalUnit;
    intervalCount: number;
    startDate?: number;
    endDate?: number;
    label: string;
    amount: string;
}

iOS only. Use this type for payments that occur more than once, such as a subscription. Only available on iOS 15 and up, otherwise falls back to ImmediateCartSummaryItem.

Type declaration

  • paymentType: Recurring
  • intervalUnit: IntervalUnit

    The amount of time – in calendar units such as Day, Month, or Year – that represents a fraction of the total payment interval. For example, if you set the intervalUnit to 'Month' and intervalCount to 3, then the payment interval is three months.

  • intervalCount: number

    The number of interval units that make up the total payment interval. For example, if you set the intervalUnit to 'Month' and intervalCount to 3, then the payment interval is three months.

  • OptionalstartDate?: number

    The unix timestamp of the start date. Measured in seconds.

  • OptionalendDate?: number

    The unix timestamp of the end date. Measured in seconds.

  • label: string
  • amount: string
MMNEPVFCICPMFPCPTTAAATR