Configuration for a custom payment method.

interface CustomPaymentMethod {
    id: string;
    subtitle?: string;
    disableBillingDetailCollection?: boolean;
}

Properties

id: string

The custom payment method ID (beginning with cpmt_) as created in your Stripe Dashboard.

subtitle?: string

Optional subtitle to display beneath the custom payment method name.

disableBillingDetailCollection?: boolean

Whether to disable billing detail collection for this custom payment method. Defaults to true.