Class PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder
- Enclosing class:
- PaymentIntentCreateParams.PaymentMethodOptions.Klarna
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddAllSubscription
(List<PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Subscription> elements) Add all elements to `subscriptions` list.Add an element to `subscriptions` list.build()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setCaptureMethod
(EmptyParam captureMethod) Controls when the funds are captured from the customer's account.Controls when the funds are captured from the customer's account.On-demand details if setting up or charging an on-demand payment.setPreferredLocale
(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.PreferredLocale preferredLocale) Preferred language of the Klarna authorization page that the customer is redirected to.setSetupFutureUsage
(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.SetupFutureUsage setupFutureUsage) Indicates that you intend to make future payments with this PaymentIntent's payment method.setSubscriptions
(EmptyParam subscriptions) Subscription details if setting up or charging a subscription.setSubscriptions
(List<PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Subscription> subscriptions) Subscription details if setting up or charging a subscription.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCaptureMethod
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setCaptureMethod(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.CaptureMethod captureMethod) Controls when the funds are captured from the customer's account.If provided, this parameter overrides the behavior of the top-level capture_method for this payment method type when finalizing the payment with this payment method type.
If
capture_method
is already set on the PaymentIntent, providing an empty value for this parameter unsets the stored value for this payment method type. -
setCaptureMethod
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setCaptureMethod(EmptyParam captureMethod) Controls when the funds are captured from the customer's account.If provided, this parameter overrides the behavior of the top-level capture_method for this payment method type when finalizing the payment with this payment method type.
If
capture_method
is already set on the PaymentIntent, providing an empty value for this parameter unsets the stored value for this payment method type. -
putExtraParam
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder putExtraParam(String key, Object value) Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeePaymentIntentCreateParams.PaymentMethodOptions.Klarna.extraParams
for the field documentation. -
putAllExtraParam
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder putAllExtraParam(Map<String, Object> map) Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeePaymentIntentCreateParams.PaymentMethodOptions.Klarna.extraParams
for the field documentation. -
setOnDemand
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setOnDemand(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.OnDemand onDemand) On-demand details if setting up or charging an on-demand payment. -
setPreferredLocale
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setPreferredLocale(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.PreferredLocale preferredLocale) Preferred language of the Klarna authorization page that the customer is redirected to. -
setSetupFutureUsage
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setSetupFutureUsage(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.SetupFutureUsage setupFutureUsage) Indicates that you intend to make future payments with this PaymentIntent's payment method.If you provide a Customer with the PaymentIntent, you can use this parameter to attach the payment method to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still attach the payment method to a Customer after the transaction completes.
If the payment method is
card_present
and isn't a digital wallet, Stripe creates and attaches a generated_card payment method representing the card to the Customer instead.When processing card payments, Stripe uses
setup_future_usage
to help you comply with regional legislation and network rules, such as SCA.If you've already set
setup_future_usage
and you're performing a request using a publishable key, you can only update the value fromon_session
tooff_session
. -
addSubscription
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder addSubscription(PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Subscription element) Add an element to `subscriptions` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeePaymentIntentCreateParams.PaymentMethodOptions.Klarna.subscriptions
for the field documentation. -
addAllSubscription
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder addAllSubscription(List<PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Subscription> elements) Add all elements to `subscriptions` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeePaymentIntentCreateParams.PaymentMethodOptions.Klarna.subscriptions
for the field documentation. -
setSubscriptions
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setSubscriptions(EmptyParam subscriptions) Subscription details if setting up or charging a subscription. -
setSubscriptions
public PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Builder setSubscriptions(List<PaymentIntentCreateParams.PaymentMethodOptions.Klarna.Subscription> subscriptions) Subscription details if setting up or charging a subscription.
-