Class PaymentLinkCreateParams.PaymentIntentData
- Enclosing class:
- PaymentLinkCreateParams
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static enum
static enum
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Controls when the funds will be captured from the customer's account.Map of extra parameters for custom features not available in this client library.Indicates that you intend to make future payments with the payment method collected by this Checkout Session.
-
Method Details
-
builder
-
getCaptureMethod
Controls when the funds will be captured from the customer's account. -
getExtraParams
Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's@SerializedName
value. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance. -
getSetupFutureUsage
Indicates that you intend to make future payments with the payment method collected by this Checkout Session.When setting this to
on_session
, Checkout will show a notice to the customer that their payment details will be saved.When setting this to
off_session
, Checkout will show a notice to the customer that their payment details will be saved and used for future payments.If a Customer has been provided or Checkout creates a new Customer,Checkout will attach the payment method to the Customer.
If Checkout does not create a Customer, the payment method is not attached to a Customer. To reuse the payment method, you can retrieve it from the Checkout Session's PaymentIntent.
When processing card payments, Checkout also uses
setup_future_usage
to dynamically optimize your payment flow and comply with regional legislation and network rules, such as SCA.
-