An object that defines a summary item for a payment that’s charged at a later date, such as a pre-order.

interface DeferredPaymentSummaryItem {
    amount: string;
    deferredDate?: number;
    label: string;
    type?: SummaryItemType;
}

Hierarchy (view full)

Properties

amount: string

Summary item’s amount.

The amount’s currency is specified at the payment level by setting a value for the currencyCode property on the request.

deferredDate?: number

The date, in the future, of the payment.

In milliseconds since epoch.

label: string

Short, localized description of the item.

Type that indicates whether the amount is final.