ConfirmPaymentIntentParams

Types

Link copied to clipboard
object Companion
Link copied to clipboard

Indicates that you intend to make future payments with this PaymentIntent’s payment method.

Link copied to clipboard
data class Shipping @JvmOverloads constructor(address: Address, name: String, carrier: String? = null, phone: String? = null, trackingNumber: String? = null) : StripeParamsModel, Parcelable

Shipping information for this PaymentIntent.

Properties

Link copied to clipboard
open override val clientSecret: String

The client secret of this PaymentIntent. Used for client-side retrieval using a publishable key.

Link copied to clipboard

This hash contains details about the Mandate to create.

Link copied to clipboard

ID of the mandate to be used for this payment.

Link copied to clipboard
val paymentMethodId: String? = null

ID of the payment method (a PaymentMethod, Card, or compatible Source object) to attach to this PaymentIntent.

Link copied to clipboard

Payment-method-specific configuration for this PaymentIntent.

Link copied to clipboard

Email address that the receipt for the resulting payment will be sent to.

Link copied to clipboard
open override var returnUrl: String?

The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method’s app or site. If you’d prefer to redirect to a mobile application, you can alternatively supply an application URI scheme. This parameter is only used for cards and other redirect-based payment methods.

Link copied to clipboard

If the PaymentIntent has a payment_method and a customer or if you’re attaching a payment method to the PaymentIntent in this request, you can pass save_payment_method=true to save the payment method to the customer. Defaults to false.

Link copied to clipboard

Indicates that you intend to make future payments with this PaymentIntent’s payment method.

Link copied to clipboard

Shipping information for this PaymentIntent.

Link copied to clipboard
val sourceId: String? = null
Link copied to clipboard

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
Link copied to clipboard
open override fun shouldUseStripeSdk(): Boolean
Link copied to clipboard
open override fun toParamMap(): Map<String, Any>

Create a Map representing this object that is prepared for the Stripe API.

Link copied to clipboard
open override fun withShouldUseStripeSdk(shouldUseStripeSdk: Boolean): ConfirmPaymentIntentParams
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)