All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stripe.param.PaymentIntentConfirmParams Maven / Gradle / Ivy

There is a newer version: 28.1.0-beta.3
Show newest version
// File generated from our OpenAPI spec
package com.stripe.param;

import com.google.gson.annotations.SerializedName;
import com.stripe.net.ApiRequestParams;
import com.stripe.param.common.EmptyParam;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import lombok.Getter;

@Getter
public class PaymentIntentConfirmParams extends ApiRequestParams {
  /**
   * The amount of the application fee (if any) that will be requested to be applied to the payment
   * and transferred to the application owner's Stripe account. The amount of the application fee
   * collected will be capped at the total payment amount. For more information, see the
   * PaymentIntents use case for
   * connected accounts.
   */
  @SerializedName("application_fee_amount")
  Object applicationFeeAmount;

  /** Automations to be run during the PaymentIntent lifecycle. */
  @SerializedName("async_workflows")
  AsyncWorkflows asyncWorkflows;

  /** Controls when the funds will be captured from the customer's account. */
  @SerializedName("capture_method")
  CaptureMethod captureMethod;

  /**
   * ID of the ConfirmationToken used to confirm this PaymentIntent.
   *
   * 

If the provided ConfirmationToken contains properties that are also being provided in this * request, such as {@code payment_method}, then the values in this request will take precedence. */ @SerializedName("confirmation_token") String confirmationToken; /** * Set to {@code true} to fail the payment attempt if the PaymentIntent transitions into {@code * requires_action}. This parameter is intended for simpler integrations that do not handle * customer actions, like saving cards without * authentication. */ @SerializedName("error_on_requires_action") Boolean errorOnRequiresAction; /** Specifies which fields in the response should be expanded. */ @SerializedName("expand") List expand; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** ID of the mandate that's used for this payment. */ @SerializedName("mandate") String mandate; @SerializedName("mandate_data") Object mandateData; /** * Set to {@code true} to indicate that the customer isn't in your checkout flow during this * payment attempt and can't authenticate. Use this parameter in scenarios where you collect card * details and charge them * later. */ @SerializedName("off_session") Object offSession; /** Provides industry-specific information about the charge. */ @SerializedName("payment_details") Object paymentDetails; /** * ID of the payment method (a PaymentMethod, Card, or compatible * Source object) to attach to this PaymentIntent. */ @SerializedName("payment_method") String paymentMethod; /** * If provided, this hash will be used to create a PaymentMethod. The new PaymentMethod will * appear in the payment_method * property on the PaymentIntent. */ @SerializedName("payment_method_data") PaymentMethodData paymentMethodData; /** Payment method-specific configuration for this PaymentIntent. */ @SerializedName("payment_method_options") PaymentMethodOptions paymentMethodOptions; /** * The list of payment method types (for example, a card) that this PaymentIntent can use. Use * {@code automatic_payment_methods} to manage payment methods from the Stripe Dashboard. */ @SerializedName("payment_method_types") List paymentMethodTypes; /** * Options to configure Radar. Learn more about Radar Sessions. */ @SerializedName("radar_options") RadarOptions radarOptions; /** * Email address that the receipt for the resulting payment will be sent to. If {@code * receipt_email} is specified for a payment in live mode, a receipt will be sent regardless of * your email settings. */ @SerializedName("receipt_email") Object receiptEmail; /** * 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. */ @SerializedName("return_url") String returnUrl; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; /** Shipping information for this PaymentIntent. */ @SerializedName("shipping") Object shipping; /** * Set to {@code true} when confirming server-side and using Stripe.js, iOS, or Android * client-side SDKs to handle the next actions. */ @SerializedName("use_stripe_sdk") Boolean useStripeSdk; private PaymentIntentConfirmParams( Object applicationFeeAmount, AsyncWorkflows asyncWorkflows, CaptureMethod captureMethod, String confirmationToken, Boolean errorOnRequiresAction, List expand, Map extraParams, String mandate, Object mandateData, Object offSession, Object paymentDetails, String paymentMethod, PaymentMethodData paymentMethodData, PaymentMethodOptions paymentMethodOptions, List paymentMethodTypes, RadarOptions radarOptions, Object receiptEmail, String returnUrl, ApiRequestParams.EnumParam setupFutureUsage, Object shipping, Boolean useStripeSdk) { this.applicationFeeAmount = applicationFeeAmount; this.asyncWorkflows = asyncWorkflows; this.captureMethod = captureMethod; this.confirmationToken = confirmationToken; this.errorOnRequiresAction = errorOnRequiresAction; this.expand = expand; this.extraParams = extraParams; this.mandate = mandate; this.mandateData = mandateData; this.offSession = offSession; this.paymentDetails = paymentDetails; this.paymentMethod = paymentMethod; this.paymentMethodData = paymentMethodData; this.paymentMethodOptions = paymentMethodOptions; this.paymentMethodTypes = paymentMethodTypes; this.radarOptions = radarOptions; this.receiptEmail = receiptEmail; this.returnUrl = returnUrl; this.setupFutureUsage = setupFutureUsage; this.shipping = shipping; this.useStripeSdk = useStripeSdk; } public static Builder builder() { return new Builder(); } public static class Builder { private Object applicationFeeAmount; private AsyncWorkflows asyncWorkflows; private CaptureMethod captureMethod; private String confirmationToken; private Boolean errorOnRequiresAction; private List expand; private Map extraParams; private String mandate; private Object mandateData; private Object offSession; private Object paymentDetails; private String paymentMethod; private PaymentMethodData paymentMethodData; private PaymentMethodOptions paymentMethodOptions; private List paymentMethodTypes; private RadarOptions radarOptions; private Object receiptEmail; private String returnUrl; private ApiRequestParams.EnumParam setupFutureUsage; private Object shipping; private Boolean useStripeSdk; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams build() { return new PaymentIntentConfirmParams( this.applicationFeeAmount, this.asyncWorkflows, this.captureMethod, this.confirmationToken, this.errorOnRequiresAction, this.expand, this.extraParams, this.mandate, this.mandateData, this.offSession, this.paymentDetails, this.paymentMethod, this.paymentMethodData, this.paymentMethodOptions, this.paymentMethodTypes, this.radarOptions, this.receiptEmail, this.returnUrl, this.setupFutureUsage, this.shipping, this.useStripeSdk); } /** * The amount of the application fee (if any) that will be requested to be applied to the * payment and transferred to the application owner's Stripe account. The amount of the * application fee collected will be capped at the total payment amount. For more information, * see the PaymentIntents use case * for connected accounts. */ public Builder setApplicationFeeAmount(Long applicationFeeAmount) { this.applicationFeeAmount = applicationFeeAmount; return this; } /** * The amount of the application fee (if any) that will be requested to be applied to the * payment and transferred to the application owner's Stripe account. The amount of the * application fee collected will be capped at the total payment amount. For more information, * see the PaymentIntents use case * for connected accounts. */ public Builder setApplicationFeeAmount(EmptyParam applicationFeeAmount) { this.applicationFeeAmount = applicationFeeAmount; return this; } /** Automations to be run during the PaymentIntent lifecycle. */ public Builder setAsyncWorkflows(PaymentIntentConfirmParams.AsyncWorkflows asyncWorkflows) { this.asyncWorkflows = asyncWorkflows; return this; } /** Controls when the funds will be captured from the customer's account. */ public Builder setCaptureMethod(PaymentIntentConfirmParams.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * ID of the ConfirmationToken used to confirm this PaymentIntent. * *

If the provided ConfirmationToken contains properties that are also being provided in this * request, such as {@code payment_method}, then the values in this request will take * precedence. */ public Builder setConfirmationToken(String confirmationToken) { this.confirmationToken = confirmationToken; return this; } /** * Set to {@code true} to fail the payment attempt if the PaymentIntent transitions into {@code * requires_action}. This parameter is intended for simpler integrations that do not handle * customer actions, like saving cards without * authentication. */ public Builder setErrorOnRequiresAction(Boolean errorOnRequiresAction) { this.errorOnRequiresAction = errorOnRequiresAction; return this; } /** * Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and * subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams#expand} for the field documentation. */ public Builder addExpand(String element) { if (this.expand == null) { this.expand = new ArrayList<>(); } this.expand.add(element); return this; } /** * Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and * subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams#expand} for the field documentation. */ public Builder addAllExpand(List elements) { if (this.expand == null) { this.expand = new ArrayList<>(); } this.expand.addAll(elements); return this; } /** * 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. See {@link * PaymentIntentConfirmParams#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams#extraParams} for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** ID of the mandate that's used for this payment. */ public Builder setMandate(String mandate) { this.mandate = mandate; return this; } public Builder setMandateData(PaymentIntentConfirmParams.MandateData mandateData) { this.mandateData = mandateData; return this; } public Builder setMandateData(EmptyParam mandateData) { this.mandateData = mandateData; return this; } /** * Set to {@code true} to indicate that the customer isn't in your checkout flow during this * payment attempt and can't authenticate. Use this parameter in scenarios where you collect * card details and charge * them later. */ public Builder setOffSession(Boolean offSession) { this.offSession = offSession; return this; } /** * Set to {@code true} to indicate that the customer isn't in your checkout flow during this * payment attempt and can't authenticate. Use this parameter in scenarios where you collect * card details and charge * them later. */ public Builder setOffSession(PaymentIntentConfirmParams.OffSession offSession) { this.offSession = offSession; return this; } /** Provides industry-specific information about the charge. */ public Builder setPaymentDetails(PaymentIntentConfirmParams.PaymentDetails paymentDetails) { this.paymentDetails = paymentDetails; return this; } /** Provides industry-specific information about the charge. */ public Builder setPaymentDetails(EmptyParam paymentDetails) { this.paymentDetails = paymentDetails; return this; } /** * ID of the payment method (a PaymentMethod, Card, or compatible * Source object) to attach to this PaymentIntent. */ public Builder setPaymentMethod(String paymentMethod) { this.paymentMethod = paymentMethod; return this; } /** * If provided, this hash will be used to create a PaymentMethod. The new PaymentMethod will * appear in the payment_method * property on the PaymentIntent. */ public Builder setPaymentMethodData( PaymentIntentConfirmParams.PaymentMethodData paymentMethodData) { this.paymentMethodData = paymentMethodData; return this; } /** Payment method-specific configuration for this PaymentIntent. */ public Builder setPaymentMethodOptions( PaymentIntentConfirmParams.PaymentMethodOptions paymentMethodOptions) { this.paymentMethodOptions = paymentMethodOptions; return this; } /** * Add an element to `paymentMethodTypes` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams#paymentMethodTypes} for the field documentation. */ public Builder addPaymentMethodType(String element) { if (this.paymentMethodTypes == null) { this.paymentMethodTypes = new ArrayList<>(); } this.paymentMethodTypes.add(element); return this; } /** * Add all elements to `paymentMethodTypes` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original list. See * {@link PaymentIntentConfirmParams#paymentMethodTypes} for the field documentation. */ public Builder addAllPaymentMethodType(List elements) { if (this.paymentMethodTypes == null) { this.paymentMethodTypes = new ArrayList<>(); } this.paymentMethodTypes.addAll(elements); return this; } /** * Options to configure Radar. Learn more about Radar Sessions. */ public Builder setRadarOptions(PaymentIntentConfirmParams.RadarOptions radarOptions) { this.radarOptions = radarOptions; return this; } /** * Email address that the receipt for the resulting payment will be sent to. If {@code * receipt_email} is specified for a payment in live mode, a receipt will be sent regardless of * your email settings. */ public Builder setReceiptEmail(String receiptEmail) { this.receiptEmail = receiptEmail; return this; } /** * Email address that the receipt for the resulting payment will be sent to. If {@code * receipt_email} is specified for a payment in live mode, a receipt will be sent regardless of * your email settings. */ public Builder setReceiptEmail(EmptyParam receiptEmail) { this.receiptEmail = receiptEmail; return this; } /** * 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. */ public Builder setReturnUrl(String returnUrl) { this.returnUrl = returnUrl; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** Shipping information for this PaymentIntent. */ public Builder setShipping(PaymentIntentConfirmParams.Shipping shipping) { this.shipping = shipping; return this; } /** Shipping information for this PaymentIntent. */ public Builder setShipping(EmptyParam shipping) { this.shipping = shipping; return this; } /** * Set to {@code true} when confirming server-side and using Stripe.js, iOS, or Android * client-side SDKs to handle the next actions. */ public Builder setUseStripeSdk(Boolean useStripeSdk) { this.useStripeSdk = useStripeSdk; return this; } } @Getter public static class AsyncWorkflows { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Arguments passed in automations. */ @SerializedName("inputs") Inputs inputs; private AsyncWorkflows(Map extraParams, Inputs inputs) { this.extraParams = extraParams; this.inputs = inputs; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Inputs inputs; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.AsyncWorkflows build() { return new PaymentIntentConfirmParams.AsyncWorkflows(this.extraParams, this.inputs); } /** * 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. See {@link * PaymentIntentConfirmParams.AsyncWorkflows#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.AsyncWorkflows#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Arguments passed in automations. */ public Builder setInputs(PaymentIntentConfirmParams.AsyncWorkflows.Inputs inputs) { this.inputs = inputs; return this; } } @Getter public static class Inputs { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Tax arguments for automations. */ @SerializedName("tax") Tax tax; private Inputs(Map extraParams, Tax tax) { this.extraParams = extraParams; this.tax = tax; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Tax tax; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.AsyncWorkflows.Inputs build() { return new PaymentIntentConfirmParams.AsyncWorkflows.Inputs(this.extraParams, this.tax); } /** * 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. See {@link PaymentIntentConfirmParams.AsyncWorkflows.Inputs#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.AsyncWorkflows.Inputs#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Tax arguments for automations. */ public Builder setTax(PaymentIntentConfirmParams.AsyncWorkflows.Inputs.Tax tax) { this.tax = tax; return this; } } @Getter public static class Tax { /** * Required. The TaxCalculation id */ @SerializedName("calculation") Object calculation; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Tax(Object calculation, Map extraParams) { this.calculation = calculation; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Object calculation; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.AsyncWorkflows.Inputs.Tax build() { return new PaymentIntentConfirmParams.AsyncWorkflows.Inputs.Tax( this.calculation, this.extraParams); } /** * Required. The TaxCalculation id */ public Builder setCalculation(String calculation) { this.calculation = calculation; return this; } /** * Required. The TaxCalculation id */ public Builder setCalculation(EmptyParam calculation) { this.calculation = calculation; return this; } /** * 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. See {@link PaymentIntentConfirmParams.AsyncWorkflows.Inputs.Tax#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.AsyncWorkflows.Inputs.Tax#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } } } @Getter public static class MandateData { /** This hash contains details about the customer acceptance of the Mandate. */ @SerializedName("customer_acceptance") CustomerAcceptance customerAcceptance; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private MandateData(CustomerAcceptance customerAcceptance, Map extraParams) { this.customerAcceptance = customerAcceptance; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private CustomerAcceptance customerAcceptance; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.MandateData build() { return new PaymentIntentConfirmParams.MandateData( this.customerAcceptance, this.extraParams); } /** This hash contains details about the customer acceptance of the Mandate. */ public Builder setCustomerAcceptance( PaymentIntentConfirmParams.MandateData.CustomerAcceptance customerAcceptance) { this.customerAcceptance = customerAcceptance; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.MandateData#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.MandateData#extraParams} for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } @Getter public static class CustomerAcceptance { /** The time at which the customer accepted the Mandate. */ @SerializedName("accepted_at") Long acceptedAt; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * If this is a Mandate accepted offline, this hash contains details about the offline * acceptance. */ @SerializedName("offline") Offline offline; /** * If this is a Mandate accepted online, this hash contains details about the online * acceptance. */ @SerializedName("online") Online online; /** * Required. The type of customer acceptance information included with the * Mandate. One of {@code online} or {@code offline}. */ @SerializedName("type") Type type; private CustomerAcceptance( Long acceptedAt, Map extraParams, Offline offline, Online online, Type type) { this.acceptedAt = acceptedAt; this.extraParams = extraParams; this.offline = offline; this.online = online; this.type = type; } public static Builder builder() { return new Builder(); } public static class Builder { private Long acceptedAt; private Map extraParams; private Offline offline; private Online online; private Type type; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.MandateData.CustomerAcceptance build() { return new PaymentIntentConfirmParams.MandateData.CustomerAcceptance( this.acceptedAt, this.extraParams, this.offline, this.online, this.type); } /** The time at which the customer accepted the Mandate. */ public Builder setAcceptedAt(Long acceptedAt) { this.acceptedAt = acceptedAt; return this; } /** * 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. See {@link PaymentIntentConfirmParams.MandateData.CustomerAcceptance#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.MandateData.CustomerAcceptance#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * If this is a Mandate accepted offline, this hash contains details about the offline * acceptance. */ public Builder setOffline( PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Offline offline) { this.offline = offline; return this; } /** * If this is a Mandate accepted online, this hash contains details about the online * acceptance. */ public Builder setOnline( PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Online online) { this.online = online; return this; } /** * Required. The type of customer acceptance information included with the * Mandate. One of {@code online} or {@code offline}. */ public Builder setType( PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Type type) { this.type = type; return this; } } @Getter public static class Offline { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Offline(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Offline build() { return new PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Offline( this.extraParams); } /** * 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. See {@link * PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Offline#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Offline#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Online { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The IP address from which the Mandate was accepted by the customer. */ @SerializedName("ip_address") String ipAddress; /** The user agent of the browser from which the Mandate was accepted by the customer. */ @SerializedName("user_agent") String userAgent; private Online(Map extraParams, String ipAddress, String userAgent) { this.extraParams = extraParams; this.ipAddress = ipAddress; this.userAgent = userAgent; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String ipAddress; private String userAgent; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Online build() { return new PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Online( this.extraParams, this.ipAddress, this.userAgent); } /** * 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. See {@link * PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Online#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.MandateData.CustomerAcceptance.Online#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The IP address from which the Mandate was accepted by the customer. */ public Builder setIpAddress(String ipAddress) { this.ipAddress = ipAddress; return this; } /** The user agent of the browser from which the Mandate was accepted by the customer. */ public Builder setUserAgent(String userAgent) { this.userAgent = userAgent; return this; } } } public enum Type implements ApiRequestParams.EnumParam { @SerializedName("offline") OFFLINE("offline"), @SerializedName("online") ONLINE("online"); @Getter(onMethod_ = {@Override}) private final String value; Type(String value) { this.value = value; } } } } @Getter public static class PaymentDetails { /** Car rental details for this PaymentIntent. */ @SerializedName("car_rental") CarRental carRental; /** Event details for this PaymentIntent. */ @SerializedName("event_details") EventDetails eventDetails; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Flight reservation details for this PaymentIntent. */ @SerializedName("flight") Flight flight; /** Lodging reservation details for this PaymentIntent. */ @SerializedName("lodging") Lodging lodging; /** Subscription details for this PaymentIntent. */ @SerializedName("subscription") Subscription subscription; private PaymentDetails( CarRental carRental, EventDetails eventDetails, Map extraParams, Flight flight, Lodging lodging, Subscription subscription) { this.carRental = carRental; this.eventDetails = eventDetails; this.extraParams = extraParams; this.flight = flight; this.lodging = lodging; this.subscription = subscription; } public static Builder builder() { return new Builder(); } public static class Builder { private CarRental carRental; private EventDetails eventDetails; private Map extraParams; private Flight flight; private Lodging lodging; private Subscription subscription; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails build() { return new PaymentIntentConfirmParams.PaymentDetails( this.carRental, this.eventDetails, this.extraParams, this.flight, this.lodging, this.subscription); } /** Car rental details for this PaymentIntent. */ public Builder setCarRental(PaymentIntentConfirmParams.PaymentDetails.CarRental carRental) { this.carRental = carRental; return this; } /** Event details for this PaymentIntent. */ public Builder setEventDetails( PaymentIntentConfirmParams.PaymentDetails.EventDetails eventDetails) { this.eventDetails = eventDetails; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.PaymentDetails#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Flight reservation details for this PaymentIntent. */ public Builder setFlight(PaymentIntentConfirmParams.PaymentDetails.Flight flight) { this.flight = flight; return this; } /** Lodging reservation details for this PaymentIntent. */ public Builder setLodging(PaymentIntentConfirmParams.PaymentDetails.Lodging lodging) { this.lodging = lodging; return this; } /** Subscription details for this PaymentIntent. */ public Builder setSubscription( PaymentIntentConfirmParams.PaymentDetails.Subscription subscription) { this.subscription = subscription; return this; } } @Getter public static class CarRental { /** Affiliate details for this purchase. */ @SerializedName("affiliate") Affiliate affiliate; /** Required. The booking number associated with the car rental. */ @SerializedName("booking_number") String bookingNumber; /** Class code of the car. */ @SerializedName("car_class_code") String carClassCode; /** Make of the car. */ @SerializedName("car_make") String carMake; /** Model of the car. */ @SerializedName("car_model") String carModel; /** The name of the rental car company. */ @SerializedName("company") String company; /** The customer service phone number of the car rental company. */ @SerializedName("customer_service_phone_number") String customerServicePhoneNumber; /** Required. Number of days the car is being rented. */ @SerializedName("days_rented") Long daysRented; /** Delivery details for this purchase. */ @SerializedName("delivery") Delivery delivery; /** The details of the passengers in the travel reservation. */ @SerializedName("drivers") List drivers; /** List of additional charges being billed. */ @SerializedName("extra_charges") List extraCharges; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Indicates if the customer did not keep nor cancel their booking. */ @SerializedName("no_show") Boolean noShow; /** Car pick-up address. */ @SerializedName("pickup_address") PickupAddress pickupAddress; /** Required. Car pick-up time. Measured in seconds since the Unix epoch. */ @SerializedName("pickup_at") Long pickupAt; /** Rental rate. */ @SerializedName("rate_amount") Long rateAmount; /** * The frequency at which the rate amount is applied. One of {@code day}, {@code week} or * {@code month} */ @SerializedName("rate_interval") RateInterval rateInterval; /** The name of the person or entity renting the car. */ @SerializedName("renter_name") String renterName; /** Car return address. */ @SerializedName("return_address") ReturnAddress returnAddress; /** Required. Car return time. Measured in seconds since the Unix epoch. */ @SerializedName("return_at") Long returnAt; /** Indicates whether the goods or services are tax-exempt or tax is not collected. */ @SerializedName("tax_exempt") Boolean taxExempt; private CarRental( Affiliate affiliate, String bookingNumber, String carClassCode, String carMake, String carModel, String company, String customerServicePhoneNumber, Long daysRented, Delivery delivery, List drivers, List extraCharges, Map extraParams, Boolean noShow, PickupAddress pickupAddress, Long pickupAt, Long rateAmount, RateInterval rateInterval, String renterName, ReturnAddress returnAddress, Long returnAt, Boolean taxExempt) { this.affiliate = affiliate; this.bookingNumber = bookingNumber; this.carClassCode = carClassCode; this.carMake = carMake; this.carModel = carModel; this.company = company; this.customerServicePhoneNumber = customerServicePhoneNumber; this.daysRented = daysRented; this.delivery = delivery; this.drivers = drivers; this.extraCharges = extraCharges; this.extraParams = extraParams; this.noShow = noShow; this.pickupAddress = pickupAddress; this.pickupAt = pickupAt; this.rateAmount = rateAmount; this.rateInterval = rateInterval; this.renterName = renterName; this.returnAddress = returnAddress; this.returnAt = returnAt; this.taxExempt = taxExempt; } public static Builder builder() { return new Builder(); } public static class Builder { private Affiliate affiliate; private String bookingNumber; private String carClassCode; private String carMake; private String carModel; private String company; private String customerServicePhoneNumber; private Long daysRented; private Delivery delivery; private List drivers; private List extraCharges; private Map extraParams; private Boolean noShow; private PickupAddress pickupAddress; private Long pickupAt; private Long rateAmount; private RateInterval rateInterval; private String renterName; private ReturnAddress returnAddress; private Long returnAt; private Boolean taxExempt; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental( this.affiliate, this.bookingNumber, this.carClassCode, this.carMake, this.carModel, this.company, this.customerServicePhoneNumber, this.daysRented, this.delivery, this.drivers, this.extraCharges, this.extraParams, this.noShow, this.pickupAddress, this.pickupAt, this.rateAmount, this.rateInterval, this.renterName, this.returnAddress, this.returnAt, this.taxExempt); } /** Affiliate details for this purchase. */ public Builder setAffiliate( PaymentIntentConfirmParams.PaymentDetails.CarRental.Affiliate affiliate) { this.affiliate = affiliate; return this; } /** Required. The booking number associated with the car rental. */ public Builder setBookingNumber(String bookingNumber) { this.bookingNumber = bookingNumber; return this; } /** Class code of the car. */ public Builder setCarClassCode(String carClassCode) { this.carClassCode = carClassCode; return this; } /** Make of the car. */ public Builder setCarMake(String carMake) { this.carMake = carMake; return this; } /** Model of the car. */ public Builder setCarModel(String carModel) { this.carModel = carModel; return this; } /** The name of the rental car company. */ public Builder setCompany(String company) { this.company = company; return this; } /** The customer service phone number of the car rental company. */ public Builder setCustomerServicePhoneNumber(String customerServicePhoneNumber) { this.customerServicePhoneNumber = customerServicePhoneNumber; return this; } /** Required. Number of days the car is being rented. */ public Builder setDaysRented(Long daysRented) { this.daysRented = daysRented; return this; } /** Delivery details for this purchase. */ public Builder setDelivery( PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery delivery) { this.delivery = delivery; return this; } /** * Add an element to `drivers` list. A list is initialized for the first `add/addAll` call, * and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental#drivers} for the field documentation. */ public Builder addDriver( PaymentIntentConfirmParams.PaymentDetails.CarRental.Driver element) { if (this.drivers == null) { this.drivers = new ArrayList<>(); } this.drivers.add(element); return this; } /** * Add all elements to `drivers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental#drivers} for the field documentation. */ public Builder addAllDriver( List elements) { if (this.drivers == null) { this.drivers = new ArrayList<>(); } this.drivers.addAll(elements); return this; } /** * Add an element to `extraCharges` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental#extraCharges} for the field * documentation. */ public Builder addExtraCharge( PaymentIntentConfirmParams.PaymentDetails.CarRental.ExtraCharge element) { if (this.extraCharges == null) { this.extraCharges = new ArrayList<>(); } this.extraCharges.add(element); return this; } /** * Add all elements to `extraCharges` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental#extraCharges} for the field * documentation. */ public Builder addAllExtraCharge( List elements) { if (this.extraCharges == null) { this.extraCharges = new ArrayList<>(); } this.extraCharges.addAll(elements); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.CarRental#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.CarRental#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Indicates if the customer did not keep nor cancel their booking. */ public Builder setNoShow(Boolean noShow) { this.noShow = noShow; return this; } /** Car pick-up address. */ public Builder setPickupAddress( PaymentIntentConfirmParams.PaymentDetails.CarRental.PickupAddress pickupAddress) { this.pickupAddress = pickupAddress; return this; } /** * Required. Car pick-up time. Measured in seconds since the Unix epoch. */ public Builder setPickupAt(Long pickupAt) { this.pickupAt = pickupAt; return this; } /** Rental rate. */ public Builder setRateAmount(Long rateAmount) { this.rateAmount = rateAmount; return this; } /** * The frequency at which the rate amount is applied. One of {@code day}, {@code week} or * {@code month} */ public Builder setRateInterval( PaymentIntentConfirmParams.PaymentDetails.CarRental.RateInterval rateInterval) { this.rateInterval = rateInterval; return this; } /** The name of the person or entity renting the car. */ public Builder setRenterName(String renterName) { this.renterName = renterName; return this; } /** Car return address. */ public Builder setReturnAddress( PaymentIntentConfirmParams.PaymentDetails.CarRental.ReturnAddress returnAddress) { this.returnAddress = returnAddress; return this; } /** Required. Car return time. Measured in seconds since the Unix epoch. */ public Builder setReturnAt(Long returnAt) { this.returnAt = returnAt; return this; } /** Indicates whether the goods or services are tax-exempt or tax is not collected. */ public Builder setTaxExempt(Boolean taxExempt) { this.taxExempt = taxExempt; return this; } } @Getter public static class Affiliate { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The name of the affiliate that originated the purchase. */ @SerializedName("name") String name; private Affiliate(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental.Affiliate build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental.Affiliate( this.extraParams, this.name); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.Affiliate#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.Affiliate#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The name of the affiliate that originated the purchase. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class Delivery { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The delivery method for the payment. */ @SerializedName("mode") Mode mode; /** Details of the recipient. */ @SerializedName("recipient") Recipient recipient; private Delivery(Map extraParams, Mode mode, Recipient recipient) { this.extraParams = extraParams; this.mode = mode; this.recipient = recipient; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Mode mode; private Recipient recipient; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery( this.extraParams, this.mode, this.recipient); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The delivery method for the payment. */ public Builder setMode( PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery.Mode mode) { this.mode = mode; return this; } /** Details of the recipient. */ public Builder setRecipient( PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery.Recipient recipient) { this.recipient = recipient; return this; } } @Getter public static class Recipient { /** The email of the recipient the ticket is delivered to. */ @SerializedName("email") String email; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The name of the recipient the ticket is delivered to. */ @SerializedName("name") String name; /** The phone number of the recipient the ticket is delivered to. */ @SerializedName("phone") String phone; private Recipient( String email, Map extraParams, String name, String phone) { this.email = email; this.extraParams = extraParams; this.name = name; this.phone = phone; } public static Builder builder() { return new Builder(); } public static class Builder { private String email; private Map extraParams; private String name; private String phone; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery.Recipient build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery.Recipient( this.email, this.extraParams, this.name, this.phone); } /** The email of the recipient the ticket is delivered to. */ public Builder setEmail(String email) { this.email = email; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery.Recipient#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.Delivery.Recipient#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The name of the recipient the ticket is delivered to. */ public Builder setName(String name) { this.name = name; return this; } /** The phone number of the recipient the ticket is delivered to. */ public Builder setPhone(String phone) { this.phone = phone; return this; } } } public enum Mode implements ApiRequestParams.EnumParam { @SerializedName("email") EMAIL("email"), @SerializedName("phone") PHONE("phone"), @SerializedName("pickup") PICKUP("pickup"), @SerializedName("post") POST("post"); @Getter(onMethod_ = {@Override}) private final String value; Mode(String value) { this.value = value; } } } @Getter public static class Driver { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. Full name of the person or entity on the car reservation. */ @SerializedName("name") String name; private Driver(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental.Driver build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental.Driver( this.extraParams, this.name); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.CarRental.Driver#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.CarRental.Driver#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Full name of the person or entity on the car reservation. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class PickupAddress { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private PickupAddress( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental.PickupAddress build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental.PickupAddress( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO * 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.PickupAddress#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.PickupAddress#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } @Getter public static class ReturnAddress { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private ReturnAddress( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.CarRental.ReturnAddress build() { return new PaymentIntentConfirmParams.PaymentDetails.CarRental.ReturnAddress( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO * 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.ReturnAddress#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.CarRental.ReturnAddress#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } public enum ExtraCharge implements ApiRequestParams.EnumParam { @SerializedName("extra_mileage") EXTRA_MILEAGE("extra_mileage"), @SerializedName("gas") GAS("gas"), @SerializedName("late_return") LATE_RETURN("late_return"), @SerializedName("one_way_service") ONE_WAY_SERVICE("one_way_service"), @SerializedName("parking_violation") PARKING_VIOLATION("parking_violation"); @Getter(onMethod_ = {@Override}) private final String value; ExtraCharge(String value) { this.value = value; } } public enum RateInterval implements ApiRequestParams.EnumParam { @SerializedName("day") DAY("day"), @SerializedName("month") MONTH("month"), @SerializedName("week") WEEK("week"); @Getter(onMethod_ = {@Override}) private final String value; RateInterval(String value) { this.value = value; } } } @Getter public static class EventDetails { /** Indicates if the tickets are digitally checked when entering the venue. */ @SerializedName("access_controlled_venue") Boolean accessControlledVenue; /** The event location's address. */ @SerializedName("address") Address address; /** Affiliate details for this purchase. */ @SerializedName("affiliate") Affiliate affiliate; /** The name of the company. */ @SerializedName("company") String company; /** Delivery details for this purchase. */ @SerializedName("delivery") Delivery delivery; /** Event end time. Measured in seconds since the Unix epoch. */ @SerializedName("ends_at") Long endsAt; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Type of the event entertainment (concert, sports event etc). */ @SerializedName("genre") String genre; /** Required. The name of the event. */ @SerializedName("name") String name; /** Event start time. Measured in seconds since the Unix epoch. */ @SerializedName("starts_at") Long startsAt; private EventDetails( Boolean accessControlledVenue, Address address, Affiliate affiliate, String company, Delivery delivery, Long endsAt, Map extraParams, String genre, String name, Long startsAt) { this.accessControlledVenue = accessControlledVenue; this.address = address; this.affiliate = affiliate; this.company = company; this.delivery = delivery; this.endsAt = endsAt; this.extraParams = extraParams; this.genre = genre; this.name = name; this.startsAt = startsAt; } public static Builder builder() { return new Builder(); } public static class Builder { private Boolean accessControlledVenue; private Address address; private Affiliate affiliate; private String company; private Delivery delivery; private Long endsAt; private Map extraParams; private String genre; private String name; private Long startsAt; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.EventDetails build() { return new PaymentIntentConfirmParams.PaymentDetails.EventDetails( this.accessControlledVenue, this.address, this.affiliate, this.company, this.delivery, this.endsAt, this.extraParams, this.genre, this.name, this.startsAt); } /** Indicates if the tickets are digitally checked when entering the venue. */ public Builder setAccessControlledVenue(Boolean accessControlledVenue) { this.accessControlledVenue = accessControlledVenue; return this; } /** The event location's address. */ public Builder setAddress( PaymentIntentConfirmParams.PaymentDetails.EventDetails.Address address) { this.address = address; return this; } /** Affiliate details for this purchase. */ public Builder setAffiliate( PaymentIntentConfirmParams.PaymentDetails.EventDetails.Affiliate affiliate) { this.affiliate = affiliate; return this; } /** The name of the company. */ public Builder setCompany(String company) { this.company = company; return this; } /** Delivery details for this purchase. */ public Builder setDelivery( PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery delivery) { this.delivery = delivery; return this; } /** Event end time. Measured in seconds since the Unix epoch. */ public Builder setEndsAt(Long endsAt) { this.endsAt = endsAt; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.EventDetails#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.EventDetails#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Type of the event entertainment (concert, sports event etc). */ public Builder setGenre(String genre) { this.genre = genre; return this; } /** Required. The name of the event. */ public Builder setName(String name) { this.name = name; return this; } /** Event start time. Measured in seconds since the Unix epoch. */ public Builder setStartsAt(Long startsAt) { this.startsAt = startsAt; return this; } } @Getter public static class Address { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private Address( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.EventDetails.Address build() { return new PaymentIntentConfirmParams.PaymentDetails.EventDetails.Address( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO * 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Address#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Address#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } @Getter public static class Affiliate { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The name of the affiliate that originated the purchase. */ @SerializedName("name") String name; private Affiliate(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.EventDetails.Affiliate build() { return new PaymentIntentConfirmParams.PaymentDetails.EventDetails.Affiliate( this.extraParams, this.name); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Affiliate#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Affiliate#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The name of the affiliate that originated the purchase. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class Delivery { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The delivery method for the payment. */ @SerializedName("mode") Mode mode; /** Details of the recipient. */ @SerializedName("recipient") Recipient recipient; private Delivery(Map extraParams, Mode mode, Recipient recipient) { this.extraParams = extraParams; this.mode = mode; this.recipient = recipient; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Mode mode; private Recipient recipient; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery build() { return new PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery( this.extraParams, this.mode, this.recipient); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The delivery method for the payment. */ public Builder setMode( PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery.Mode mode) { this.mode = mode; return this; } /** Details of the recipient. */ public Builder setRecipient( PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery.Recipient recipient) { this.recipient = recipient; return this; } } @Getter public static class Recipient { /** The email of the recipient the ticket is delivered to. */ @SerializedName("email") String email; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The name of the recipient the ticket is delivered to. */ @SerializedName("name") String name; /** The phone number of the recipient the ticket is delivered to. */ @SerializedName("phone") String phone; private Recipient( String email, Map extraParams, String name, String phone) { this.email = email; this.extraParams = extraParams; this.name = name; this.phone = phone; } public static Builder builder() { return new Builder(); } public static class Builder { private String email; private Map extraParams; private String name; private String phone; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery.Recipient build() { return new PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery.Recipient( this.email, this.extraParams, this.name, this.phone); } /** The email of the recipient the ticket is delivered to. */ public Builder setEmail(String email) { this.email = email; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery.Recipient#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.EventDetails.Delivery.Recipient#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The name of the recipient the ticket is delivered to. */ public Builder setName(String name) { this.name = name; return this; } /** The phone number of the recipient the ticket is delivered to. */ public Builder setPhone(String phone) { this.phone = phone; return this; } } } public enum Mode implements ApiRequestParams.EnumParam { @SerializedName("email") EMAIL("email"), @SerializedName("phone") PHONE("phone"), @SerializedName("pickup") PICKUP("pickup"), @SerializedName("post") POST("post"); @Getter(onMethod_ = {@Override}) private final String value; Mode(String value) { this.value = value; } } } } @Getter public static class Flight { /** Affiliate details for this purchase. */ @SerializedName("affiliate") Affiliate affiliate; /** * The agency number (i.e. International Air Transport Association (IATA) agency number) of * the travel agency that made the booking. */ @SerializedName("agency_number") String agencyNumber; /** * The International Air Transport Association (IATA) carrier code of the carrier that issued * the ticket. */ @SerializedName("carrier") String carrier; /** Delivery details for this purchase. */ @SerializedName("delivery") Delivery delivery; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The name of the person or entity on the reservation. */ @SerializedName("passenger_name") String passengerName; /** The details of the passengers in the travel reservation. */ @SerializedName("passengers") List passengers; /** Required. The individual flight segments associated with the trip. */ @SerializedName("segments") List segments; /** The ticket number associated with the travel reservation. */ @SerializedName("ticket_number") String ticketNumber; private Flight( Affiliate affiliate, String agencyNumber, String carrier, Delivery delivery, Map extraParams, String passengerName, List passengers, List segments, String ticketNumber) { this.affiliate = affiliate; this.agencyNumber = agencyNumber; this.carrier = carrier; this.delivery = delivery; this.extraParams = extraParams; this.passengerName = passengerName; this.passengers = passengers; this.segments = segments; this.ticketNumber = ticketNumber; } public static Builder builder() { return new Builder(); } public static class Builder { private Affiliate affiliate; private String agencyNumber; private String carrier; private Delivery delivery; private Map extraParams; private String passengerName; private List passengers; private List segments; private String ticketNumber; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Flight build() { return new PaymentIntentConfirmParams.PaymentDetails.Flight( this.affiliate, this.agencyNumber, this.carrier, this.delivery, this.extraParams, this.passengerName, this.passengers, this.segments, this.ticketNumber); } /** Affiliate details for this purchase. */ public Builder setAffiliate( PaymentIntentConfirmParams.PaymentDetails.Flight.Affiliate affiliate) { this.affiliate = affiliate; return this; } /** * The agency number (i.e. International Air Transport Association (IATA) agency number) of * the travel agency that made the booking. */ public Builder setAgencyNumber(String agencyNumber) { this.agencyNumber = agencyNumber; return this; } /** * The International Air Transport Association (IATA) carrier code of the carrier that * issued the ticket. */ public Builder setCarrier(String carrier) { this.carrier = carrier; return this; } /** Delivery details for this purchase. */ public Builder setDelivery( PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery delivery) { this.delivery = delivery; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The name of the person or entity on the reservation. */ public Builder setPassengerName(String passengerName) { this.passengerName = passengerName; return this; } /** * Add an element to `passengers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Flight#passengers} for the field documentation. */ public Builder addPassenger( PaymentIntentConfirmParams.PaymentDetails.Flight.Passenger element) { if (this.passengers == null) { this.passengers = new ArrayList<>(); } this.passengers.add(element); return this; } /** * Add all elements to `passengers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Flight#passengers} for the field documentation. */ public Builder addAllPassenger( List elements) { if (this.passengers == null) { this.passengers = new ArrayList<>(); } this.passengers.addAll(elements); return this; } /** * Add an element to `segments` list. A list is initialized for the first `add/addAll` call, * and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Flight#segments} for the field documentation. */ public Builder addSegment( PaymentIntentConfirmParams.PaymentDetails.Flight.Segment element) { if (this.segments == null) { this.segments = new ArrayList<>(); } this.segments.add(element); return this; } /** * Add all elements to `segments` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Flight#segments} for the field documentation. */ public Builder addAllSegment( List elements) { if (this.segments == null) { this.segments = new ArrayList<>(); } this.segments.addAll(elements); return this; } /** The ticket number associated with the travel reservation. */ public Builder setTicketNumber(String ticketNumber) { this.ticketNumber = ticketNumber; return this; } } @Getter public static class Affiliate { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The name of the affiliate that originated the purchase. */ @SerializedName("name") String name; private Affiliate(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Flight.Affiliate build() { return new PaymentIntentConfirmParams.PaymentDetails.Flight.Affiliate( this.extraParams, this.name); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Affiliate#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Affiliate#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The name of the affiliate that originated the purchase. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class Delivery { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The delivery method for the payment. */ @SerializedName("mode") Mode mode; /** Details of the recipient. */ @SerializedName("recipient") Recipient recipient; private Delivery(Map extraParams, Mode mode, Recipient recipient) { this.extraParams = extraParams; this.mode = mode; this.recipient = recipient; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Mode mode; private Recipient recipient; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery build() { return new PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery( this.extraParams, this.mode, this.recipient); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The delivery method for the payment. */ public Builder setMode( PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery.Mode mode) { this.mode = mode; return this; } /** Details of the recipient. */ public Builder setRecipient( PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery.Recipient recipient) { this.recipient = recipient; return this; } } @Getter public static class Recipient { /** The email of the recipient the ticket is delivered to. */ @SerializedName("email") String email; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The name of the recipient the ticket is delivered to. */ @SerializedName("name") String name; /** The phone number of the recipient the ticket is delivered to. */ @SerializedName("phone") String phone; private Recipient( String email, Map extraParams, String name, String phone) { this.email = email; this.extraParams = extraParams; this.name = name; this.phone = phone; } public static Builder builder() { return new Builder(); } public static class Builder { private String email; private Map extraParams; private String name; private String phone; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery.Recipient build() { return new PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery.Recipient( this.email, this.extraParams, this.name, this.phone); } /** The email of the recipient the ticket is delivered to. */ public Builder setEmail(String email) { this.email = email; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery.Recipient#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Flight.Delivery.Recipient#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The name of the recipient the ticket is delivered to. */ public Builder setName(String name) { this.name = name; return this; } /** The phone number of the recipient the ticket is delivered to. */ public Builder setPhone(String phone) { this.phone = phone; return this; } } } public enum Mode implements ApiRequestParams.EnumParam { @SerializedName("email") EMAIL("email"), @SerializedName("phone") PHONE("phone"), @SerializedName("pickup") PICKUP("pickup"), @SerializedName("post") POST("post"); @Getter(onMethod_ = {@Override}) private final String value; Mode(String value) { this.value = value; } } } @Getter public static class Passenger { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. Full name of the person or entity on the flight reservation. */ @SerializedName("name") String name; private Passenger(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Flight.Passenger build() { return new PaymentIntentConfirmParams.PaymentDetails.Flight.Passenger( this.extraParams, this.name); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Passenger#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Passenger#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Full name of the person or entity on the flight reservation. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class Segment { /** The flight segment amount. */ @SerializedName("amount") Long amount; /** * The International Air Transport Association (IATA) airport code for the arrival airport. */ @SerializedName("arrival_airport") String arrivalAirport; /** The arrival time for the flight segment. Measured in seconds since the Unix epoch. */ @SerializedName("arrives_at") Long arrivesAt; /** * The International Air Transport Association (IATA) carrier code of the carrier operating * the flight segment. */ @SerializedName("carrier") String carrier; /** * Required. The departure time for the flight segment. Measured in seconds * since the Unix epoch. */ @SerializedName("departs_at") Long departsAt; /** * The International Air Transport Association (IATA) airport code for the departure * airport. */ @SerializedName("departure_airport") String departureAirport; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The flight number associated with the segment. */ @SerializedName("flight_number") String flightNumber; /** The fare class for the segment. */ @SerializedName("service_class") ServiceClass serviceClass; private Segment( Long amount, String arrivalAirport, Long arrivesAt, String carrier, Long departsAt, String departureAirport, Map extraParams, String flightNumber, ServiceClass serviceClass) { this.amount = amount; this.arrivalAirport = arrivalAirport; this.arrivesAt = arrivesAt; this.carrier = carrier; this.departsAt = departsAt; this.departureAirport = departureAirport; this.extraParams = extraParams; this.flightNumber = flightNumber; this.serviceClass = serviceClass; } public static Builder builder() { return new Builder(); } public static class Builder { private Long amount; private String arrivalAirport; private Long arrivesAt; private String carrier; private Long departsAt; private String departureAirport; private Map extraParams; private String flightNumber; private ServiceClass serviceClass; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Flight.Segment build() { return new PaymentIntentConfirmParams.PaymentDetails.Flight.Segment( this.amount, this.arrivalAirport, this.arrivesAt, this.carrier, this.departsAt, this.departureAirport, this.extraParams, this.flightNumber, this.serviceClass); } /** The flight segment amount. */ public Builder setAmount(Long amount) { this.amount = amount; return this; } /** * The International Air Transport Association (IATA) airport code for the arrival * airport. */ public Builder setArrivalAirport(String arrivalAirport) { this.arrivalAirport = arrivalAirport; return this; } /** The arrival time for the flight segment. Measured in seconds since the Unix epoch. */ public Builder setArrivesAt(Long arrivesAt) { this.arrivesAt = arrivesAt; return this; } /** * The International Air Transport Association (IATA) carrier code of the carrier * operating the flight segment. */ public Builder setCarrier(String carrier) { this.carrier = carrier; return this; } /** * Required. The departure time for the flight segment. Measured in * seconds since the Unix epoch. */ public Builder setDepartsAt(Long departsAt) { this.departsAt = departsAt; return this; } /** * The International Air Transport Association (IATA) airport code for the departure * airport. */ public Builder setDepartureAirport(String departureAirport) { this.departureAirport = departureAirport; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Segment#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Flight.Segment#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The flight number associated with the segment. */ public Builder setFlightNumber(String flightNumber) { this.flightNumber = flightNumber; return this; } /** The fare class for the segment. */ public Builder setServiceClass( PaymentIntentConfirmParams.PaymentDetails.Flight.Segment.ServiceClass serviceClass) { this.serviceClass = serviceClass; return this; } } public enum ServiceClass implements ApiRequestParams.EnumParam { @SerializedName("business") BUSINESS("business"), @SerializedName("economy") ECONOMY("economy"), @SerializedName("first") FIRST("first"), @SerializedName("premium_economy") PREMIUM_ECONOMY("premium_economy"); @Getter(onMethod_ = {@Override}) private final String value; ServiceClass(String value) { this.value = value; } } } } @Getter public static class Lodging { /** The lodging location's address. */ @SerializedName("address") Address address; /** The number of adults on the booking. */ @SerializedName("adults") Long adults; /** Affiliate details for this purchase. */ @SerializedName("affiliate") Affiliate affiliate; /** The booking number associated with the lodging reservation. */ @SerializedName("booking_number") String bookingNumber; /** The lodging category. */ @SerializedName("category") Category category; /** * Required. Loding check-in time. Measured in seconds since the Unix epoch. */ @SerializedName("checkin_at") Long checkinAt; /** * Required. Lodging check-out time. Measured in seconds since the Unix * epoch. */ @SerializedName("checkout_at") Long checkoutAt; /** The customer service phone number of the lodging company. */ @SerializedName("customer_service_phone_number") String customerServicePhoneNumber; /** The daily lodging room rate. */ @SerializedName("daily_room_rate_amount") Long dailyRoomRateAmount; /** Delivery details for this purchase. */ @SerializedName("delivery") Delivery delivery; /** List of additional charges being billed. */ @SerializedName("extra_charges") List extraCharges; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Indicates whether the lodging location is compliant with the Fire Safety Act. */ @SerializedName("fire_safety_act_compliance") Boolean fireSafetyActCompliance; /** The name of the lodging location. */ @SerializedName("name") String name; /** * Indicates if the customer did not keep their booking while failing to cancel the * reservation. */ @SerializedName("no_show") Boolean noShow; /** The number of rooms on the booking. */ @SerializedName("number_of_rooms") Long numberOfRooms; /** The details of the passengers in the travel reservation. */ @SerializedName("passengers") List passengers; /** The phone number of the lodging location. */ @SerializedName("property_phone_number") String propertyPhoneNumber; /** The room class for this purchase. */ @SerializedName("room_class") String roomClass; /** The number of room nights. */ @SerializedName("room_nights") Long roomNights; /** The total tax amount associating with the room reservation. */ @SerializedName("total_room_tax_amount") Long totalRoomTaxAmount; /** The total tax amount. */ @SerializedName("total_tax_amount") Long totalTaxAmount; private Lodging( Address address, Long adults, Affiliate affiliate, String bookingNumber, Category category, Long checkinAt, Long checkoutAt, String customerServicePhoneNumber, Long dailyRoomRateAmount, Delivery delivery, List extraCharges, Map extraParams, Boolean fireSafetyActCompliance, String name, Boolean noShow, Long numberOfRooms, List passengers, String propertyPhoneNumber, String roomClass, Long roomNights, Long totalRoomTaxAmount, Long totalTaxAmount) { this.address = address; this.adults = adults; this.affiliate = affiliate; this.bookingNumber = bookingNumber; this.category = category; this.checkinAt = checkinAt; this.checkoutAt = checkoutAt; this.customerServicePhoneNumber = customerServicePhoneNumber; this.dailyRoomRateAmount = dailyRoomRateAmount; this.delivery = delivery; this.extraCharges = extraCharges; this.extraParams = extraParams; this.fireSafetyActCompliance = fireSafetyActCompliance; this.name = name; this.noShow = noShow; this.numberOfRooms = numberOfRooms; this.passengers = passengers; this.propertyPhoneNumber = propertyPhoneNumber; this.roomClass = roomClass; this.roomNights = roomNights; this.totalRoomTaxAmount = totalRoomTaxAmount; this.totalTaxAmount = totalTaxAmount; } public static Builder builder() { return new Builder(); } public static class Builder { private Address address; private Long adults; private Affiliate affiliate; private String bookingNumber; private Category category; private Long checkinAt; private Long checkoutAt; private String customerServicePhoneNumber; private Long dailyRoomRateAmount; private Delivery delivery; private List extraCharges; private Map extraParams; private Boolean fireSafetyActCompliance; private String name; private Boolean noShow; private Long numberOfRooms; private List passengers; private String propertyPhoneNumber; private String roomClass; private Long roomNights; private Long totalRoomTaxAmount; private Long totalTaxAmount; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Lodging build() { return new PaymentIntentConfirmParams.PaymentDetails.Lodging( this.address, this.adults, this.affiliate, this.bookingNumber, this.category, this.checkinAt, this.checkoutAt, this.customerServicePhoneNumber, this.dailyRoomRateAmount, this.delivery, this.extraCharges, this.extraParams, this.fireSafetyActCompliance, this.name, this.noShow, this.numberOfRooms, this.passengers, this.propertyPhoneNumber, this.roomClass, this.roomNights, this.totalRoomTaxAmount, this.totalTaxAmount); } /** The lodging location's address. */ public Builder setAddress( PaymentIntentConfirmParams.PaymentDetails.Lodging.Address address) { this.address = address; return this; } /** The number of adults on the booking. */ public Builder setAdults(Long adults) { this.adults = adults; return this; } /** Affiliate details for this purchase. */ public Builder setAffiliate( PaymentIntentConfirmParams.PaymentDetails.Lodging.Affiliate affiliate) { this.affiliate = affiliate; return this; } /** The booking number associated with the lodging reservation. */ public Builder setBookingNumber(String bookingNumber) { this.bookingNumber = bookingNumber; return this; } /** The lodging category. */ public Builder setCategory( PaymentIntentConfirmParams.PaymentDetails.Lodging.Category category) { this.category = category; return this; } /** * Required. Loding check-in time. Measured in seconds since the Unix * epoch. */ public Builder setCheckinAt(Long checkinAt) { this.checkinAt = checkinAt; return this; } /** * Required. Lodging check-out time. Measured in seconds since the Unix * epoch. */ public Builder setCheckoutAt(Long checkoutAt) { this.checkoutAt = checkoutAt; return this; } /** The customer service phone number of the lodging company. */ public Builder setCustomerServicePhoneNumber(String customerServicePhoneNumber) { this.customerServicePhoneNumber = customerServicePhoneNumber; return this; } /** The daily lodging room rate. */ public Builder setDailyRoomRateAmount(Long dailyRoomRateAmount) { this.dailyRoomRateAmount = dailyRoomRateAmount; return this; } /** Delivery details for this purchase. */ public Builder setDelivery( PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery delivery) { this.delivery = delivery; return this; } /** * Add an element to `extraCharges` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging#extraCharges} for the field * documentation. */ public Builder addExtraCharge( PaymentIntentConfirmParams.PaymentDetails.Lodging.ExtraCharge element) { if (this.extraCharges == null) { this.extraCharges = new ArrayList<>(); } this.extraCharges.add(element); return this; } /** * Add all elements to `extraCharges` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging#extraCharges} for the field * documentation. */ public Builder addAllExtraCharge( List elements) { if (this.extraCharges == null) { this.extraCharges = new ArrayList<>(); } this.extraCharges.addAll(elements); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Lodging#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Lodging#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Indicates whether the lodging location is compliant with the Fire Safety Act. */ public Builder setFireSafetyActCompliance(Boolean fireSafetyActCompliance) { this.fireSafetyActCompliance = fireSafetyActCompliance; return this; } /** The name of the lodging location. */ public Builder setName(String name) { this.name = name; return this; } /** * Indicates if the customer did not keep their booking while failing to cancel the * reservation. */ public Builder setNoShow(Boolean noShow) { this.noShow = noShow; return this; } /** The number of rooms on the booking. */ public Builder setNumberOfRooms(Long numberOfRooms) { this.numberOfRooms = numberOfRooms; return this; } /** * Add an element to `passengers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging#passengers} for the field * documentation. */ public Builder addPassenger( PaymentIntentConfirmParams.PaymentDetails.Lodging.Passenger element) { if (this.passengers == null) { this.passengers = new ArrayList<>(); } this.passengers.add(element); return this; } /** * Add all elements to `passengers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging#passengers} for the field * documentation. */ public Builder addAllPassenger( List elements) { if (this.passengers == null) { this.passengers = new ArrayList<>(); } this.passengers.addAll(elements); return this; } /** The phone number of the lodging location. */ public Builder setPropertyPhoneNumber(String propertyPhoneNumber) { this.propertyPhoneNumber = propertyPhoneNumber; return this; } /** The room class for this purchase. */ public Builder setRoomClass(String roomClass) { this.roomClass = roomClass; return this; } /** The number of room nights. */ public Builder setRoomNights(Long roomNights) { this.roomNights = roomNights; return this; } /** The total tax amount associating with the room reservation. */ public Builder setTotalRoomTaxAmount(Long totalRoomTaxAmount) { this.totalRoomTaxAmount = totalRoomTaxAmount; return this; } /** The total tax amount. */ public Builder setTotalTaxAmount(Long totalTaxAmount) { this.totalTaxAmount = totalTaxAmount; return this; } } @Getter public static class Address { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private Address( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Lodging.Address build() { return new PaymentIntentConfirmParams.PaymentDetails.Lodging.Address( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO * 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Lodging.Address#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Lodging.Address#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } @Getter public static class Affiliate { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The name of the affiliate that originated the purchase. */ @SerializedName("name") String name; private Affiliate(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Lodging.Affiliate build() { return new PaymentIntentConfirmParams.PaymentDetails.Lodging.Affiliate( this.extraParams, this.name); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging.Affiliate#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging.Affiliate#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The name of the affiliate that originated the purchase. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class Delivery { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The delivery method for the payment. */ @SerializedName("mode") Mode mode; /** Details of the recipient. */ @SerializedName("recipient") Recipient recipient; private Delivery(Map extraParams, Mode mode, Recipient recipient) { this.extraParams = extraParams; this.mode = mode; this.recipient = recipient; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Mode mode; private Recipient recipient; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery build() { return new PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery( this.extraParams, this.mode, this.recipient); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The delivery method for the payment. */ public Builder setMode( PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery.Mode mode) { this.mode = mode; return this; } /** Details of the recipient. */ public Builder setRecipient( PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery.Recipient recipient) { this.recipient = recipient; return this; } } @Getter public static class Recipient { /** The email of the recipient the ticket is delivered to. */ @SerializedName("email") String email; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The name of the recipient the ticket is delivered to. */ @SerializedName("name") String name; /** The phone number of the recipient the ticket is delivered to. */ @SerializedName("phone") String phone; private Recipient( String email, Map extraParams, String name, String phone) { this.email = email; this.extraParams = extraParams; this.name = name; this.phone = phone; } public static Builder builder() { return new Builder(); } public static class Builder { private String email; private Map extraParams; private String name; private String phone; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery.Recipient build() { return new PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery.Recipient( this.email, this.extraParams, this.name, this.phone); } /** The email of the recipient the ticket is delivered to. */ public Builder setEmail(String email) { this.email = email; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery.Recipient#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging.Delivery.Recipient#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The name of the recipient the ticket is delivered to. */ public Builder setName(String name) { this.name = name; return this; } /** The phone number of the recipient the ticket is delivered to. */ public Builder setPhone(String phone) { this.phone = phone; return this; } } } public enum Mode implements ApiRequestParams.EnumParam { @SerializedName("email") EMAIL("email"), @SerializedName("phone") PHONE("phone"), @SerializedName("pickup") PICKUP("pickup"), @SerializedName("post") POST("post"); @Getter(onMethod_ = {@Override}) private final String value; Mode(String value) { this.value = value; } } } @Getter public static class Passenger { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. Full name of the person or entity on the lodging reservation. */ @SerializedName("name") String name; private Passenger(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Lodging.Passenger build() { return new PaymentIntentConfirmParams.PaymentDetails.Lodging.Passenger( this.extraParams, this.name); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging.Passenger#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Lodging.Passenger#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Full name of the person or entity on the lodging * reservation. */ public Builder setName(String name) { this.name = name; return this; } } } public enum Category implements ApiRequestParams.EnumParam { @SerializedName("hotel") HOTEL("hotel"), @SerializedName("vacation_rental") VACATION_RENTAL("vacation_rental"); @Getter(onMethod_ = {@Override}) private final String value; Category(String value) { this.value = value; } } public enum ExtraCharge implements ApiRequestParams.EnumParam { @SerializedName("gift_shop") GIFT_SHOP("gift_shop"), @SerializedName("laundry") LAUNDRY("laundry"), @SerializedName("mini_bar") MINI_BAR("mini_bar"), @SerializedName("other") OTHER("other"), @SerializedName("restaurant") RESTAURANT("restaurant"), @SerializedName("telephone") TELEPHONE("telephone"); @Getter(onMethod_ = {@Override}) private final String value; ExtraCharge(String value) { this.value = value; } } } @Getter public static class Subscription { /** Affiliate details for this purchase. */ @SerializedName("affiliate") Affiliate affiliate; /** Info whether the subscription will be auto renewed upon expiry. */ @SerializedName("auto_renewal") Boolean autoRenewal; /** Subscription billing details for this purchase. */ @SerializedName("billing_interval") BillingInterval billingInterval; /** Subscription end time. Measured in seconds since the Unix epoch. */ @SerializedName("ends_at") Long endsAt; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. Name of the product on subscription. e.g. Apple Music * Subscription */ @SerializedName("name") String name; /** Subscription start time. Measured in seconds since the Unix epoch. */ @SerializedName("starts_at") Long startsAt; private Subscription( Affiliate affiliate, Boolean autoRenewal, BillingInterval billingInterval, Long endsAt, Map extraParams, String name, Long startsAt) { this.affiliate = affiliate; this.autoRenewal = autoRenewal; this.billingInterval = billingInterval; this.endsAt = endsAt; this.extraParams = extraParams; this.name = name; this.startsAt = startsAt; } public static Builder builder() { return new Builder(); } public static class Builder { private Affiliate affiliate; private Boolean autoRenewal; private BillingInterval billingInterval; private Long endsAt; private Map extraParams; private String name; private Long startsAt; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Subscription build() { return new PaymentIntentConfirmParams.PaymentDetails.Subscription( this.affiliate, this.autoRenewal, this.billingInterval, this.endsAt, this.extraParams, this.name, this.startsAt); } /** Affiliate details for this purchase. */ public Builder setAffiliate( PaymentIntentConfirmParams.PaymentDetails.Subscription.Affiliate affiliate) { this.affiliate = affiliate; return this; } /** Info whether the subscription will be auto renewed upon expiry. */ public Builder setAutoRenewal(Boolean autoRenewal) { this.autoRenewal = autoRenewal; return this; } /** Subscription billing details for this purchase. */ public Builder setBillingInterval( PaymentIntentConfirmParams.PaymentDetails.Subscription.BillingInterval billingInterval) { this.billingInterval = billingInterval; return this; } /** Subscription end time. Measured in seconds since the Unix epoch. */ public Builder setEndsAt(Long endsAt) { this.endsAt = endsAt; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Subscription#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentDetails.Subscription#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Name of the product on subscription. e.g. Apple Music * Subscription */ public Builder setName(String name) { this.name = name; return this; } /** Subscription start time. Measured in seconds since the Unix epoch. */ public Builder setStartsAt(Long startsAt) { this.startsAt = startsAt; return this; } } @Getter public static class Affiliate { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The name of the affiliate that originated the purchase. */ @SerializedName("name") String name; private Affiliate(Map extraParams, String name) { this.extraParams = extraParams; this.name = name; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String name; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Subscription.Affiliate build() { return new PaymentIntentConfirmParams.PaymentDetails.Subscription.Affiliate( this.extraParams, this.name); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Subscription.Affiliate#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Subscription.Affiliate#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The name of the affiliate that originated the purchase. */ public Builder setName(String name) { this.name = name; return this; } } } @Getter public static class BillingInterval { /** * Required. The number of intervals, as an whole number greater than 0. * Stripe multiplies this by the interval type to get the overall duration. */ @SerializedName("count") Long count; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. Specifies a type of interval unit. Either {@code day}, {@code * week}, {@code month} or {@code year}. */ @SerializedName("interval") Interval interval; private BillingInterval(Long count, Map extraParams, Interval interval) { this.count = count; this.extraParams = extraParams; this.interval = interval; } public static Builder builder() { return new Builder(); } public static class Builder { private Long count; private Map extraParams; private Interval interval; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentDetails.Subscription.BillingInterval build() { return new PaymentIntentConfirmParams.PaymentDetails.Subscription.BillingInterval( this.count, this.extraParams, this.interval); } /** * Required. The number of intervals, as an whole number greater than 0. * Stripe multiplies this by the interval type to get the overall duration. */ public Builder setCount(Long count) { this.count = count; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Subscription.BillingInterval#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentDetails.Subscription.BillingInterval#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Specifies a type of interval unit. Either {@code day}, * {@code week}, {@code month} or {@code year}. */ public Builder setInterval( PaymentIntentConfirmParams.PaymentDetails.Subscription.BillingInterval.Interval interval) { this.interval = interval; return this; } } public enum Interval implements ApiRequestParams.EnumParam { @SerializedName("day") DAY("day"), @SerializedName("month") MONTH("month"), @SerializedName("week") WEEK("week"), @SerializedName("year") YEAR("year"); @Getter(onMethod_ = {@Override}) private final String value; Interval(String value) { this.value = value; } } } } } @Getter public static class PaymentMethodData { /** * If this is an {@code acss_debit} PaymentMethod, this hash contains details about the ACSS * Debit payment method. */ @SerializedName("acss_debit") AcssDebit acssDebit; /** * If this is an {@code affirm} PaymentMethod, this hash contains details about the Affirm * payment method. */ @SerializedName("affirm") Affirm affirm; /** * If this is an {@code AfterpayClearpay} PaymentMethod, this hash contains details about the * AfterpayClearpay payment method. */ @SerializedName("afterpay_clearpay") AfterpayClearpay afterpayClearpay; /** * If this is an {@code Alipay} PaymentMethod, this hash contains details about the Alipay * payment method. */ @SerializedName("alipay") Alipay alipay; /** * This field indicates whether this payment method can be shown again to its customer in a * checkout flow. Stripe products such as Checkout and Elements use this field to determine * whether a payment method can be shown as a saved payment method in a checkout flow. The field * defaults to {@code unspecified}. */ @SerializedName("allow_redisplay") AllowRedisplay allowRedisplay; /** * If this is a AmazonPay PaymentMethod, this hash contains details about the AmazonPay payment * method. */ @SerializedName("amazon_pay") AmazonPay amazonPay; /** * If this is an {@code au_becs_debit} PaymentMethod, this hash contains details about the bank * account. */ @SerializedName("au_becs_debit") AuBecsDebit auBecsDebit; /** * If this is a {@code bacs_debit} PaymentMethod, this hash contains details about the Bacs * Direct Debit bank account. */ @SerializedName("bacs_debit") BacsDebit bacsDebit; /** * If this is a {@code bancontact} PaymentMethod, this hash contains details about the * Bancontact payment method. */ @SerializedName("bancontact") Bancontact bancontact; /** * Billing information associated with the PaymentMethod that may be used or required by * particular types of payment methods. */ @SerializedName("billing_details") BillingDetails billingDetails; /** * If this is a {@code blik} PaymentMethod, this hash contains details about the BLIK payment * method. */ @SerializedName("blik") Blik blik; /** * If this is a {@code boleto} PaymentMethod, this hash contains details about the Boleto * payment method. */ @SerializedName("boleto") Boleto boleto; /** * If this is a {@code cashapp} PaymentMethod, this hash contains details about the Cash App Pay * payment method. */ @SerializedName("cashapp") Cashapp cashapp; /** * If this is a {@code customer_balance} PaymentMethod, this hash contains details about the * CustomerBalance payment method. */ @SerializedName("customer_balance") CustomerBalance customerBalance; /** * If this is an {@code eps} PaymentMethod, this hash contains details about the EPS payment * method. */ @SerializedName("eps") Eps eps; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * If this is an {@code fpx} PaymentMethod, this hash contains details about the FPX payment * method. */ @SerializedName("fpx") Fpx fpx; /** * If this is a {@code giropay} PaymentMethod, this hash contains details about the Giropay * payment method. */ @SerializedName("giropay") Giropay giropay; /** * If this is a {@code grabpay} PaymentMethod, this hash contains details about the GrabPay * payment method. */ @SerializedName("grabpay") Grabpay grabpay; /** * If this is an {@code ideal} PaymentMethod, this hash contains details about the iDEAL payment * method. */ @SerializedName("ideal") Ideal ideal; /** * If this is an {@code interac_present} PaymentMethod, this hash contains details about the * Interac Present payment method. */ @SerializedName("interac_present") InteracPresent interacPresent; /** * If this is a {@code klarna} PaymentMethod, this hash contains details about the Klarna * payment method. */ @SerializedName("klarna") Klarna klarna; /** * If this is a {@code konbini} PaymentMethod, this hash contains details about the Konbini * payment method. */ @SerializedName("konbini") Konbini konbini; /** * If this is an {@code Link} PaymentMethod, this hash contains details about the Link payment * method. */ @SerializedName("link") Link link; /** * If this is a MB WAY PaymentMethod, this hash contains details about the MB WAY payment * method. */ @SerializedName("mb_way") MbWay mbWay; /** * Set of key-value pairs that you can attach * to an object. This can be useful for storing additional information about the object in a * structured format. Individual keys can be unset by posting an empty value to them. All keys * can be unset by posting an empty value to {@code metadata}. */ @SerializedName("metadata") Map metadata; /** * If this is a {@code mobilepay} PaymentMethod, this hash contains details about the MobilePay * payment method. */ @SerializedName("mobilepay") Mobilepay mobilepay; /** * If this is a {@code multibanco} PaymentMethod, this hash contains details about the * Multibanco payment method. */ @SerializedName("multibanco") Multibanco multibanco; /** * If this is an {@code oxxo} PaymentMethod, this hash contains details about the OXXO payment * method. */ @SerializedName("oxxo") Oxxo oxxo; /** * If this is a {@code p24} PaymentMethod, this hash contains details about the P24 payment * method. */ @SerializedName("p24") P24 p24; /** * If this is a {@code paynow} PaymentMethod, this hash contains details about the PayNow * payment method. */ @SerializedName("paynow") Paynow paynow; /** * If this is a {@code paypal} PaymentMethod, this hash contains details about the PayPal * payment method. */ @SerializedName("paypal") Paypal paypal; /** * If this is a {@code payto} PaymentMethod, this hash contains details about the PayTo payment * method. */ @SerializedName("payto") Payto payto; /** * If this is a {@code pix} PaymentMethod, this hash contains details about the Pix payment * method. */ @SerializedName("pix") Pix pix; /** * If this is a {@code promptpay} PaymentMethod, this hash contains details about the PromptPay * payment method. */ @SerializedName("promptpay") Promptpay promptpay; /** * Options to configure Radar. See Radar * Session for more information. */ @SerializedName("radar_options") RadarOptions radarOptions; /** * If this is a {@code rechnung} PaymentMethod, this hash contains details about the Rechnung * payment method. */ @SerializedName("rechnung") Rechnung rechnung; /** * If this is a {@code Revolut Pay} PaymentMethod, this hash contains details about the Revolut * Pay payment method. */ @SerializedName("revolut_pay") RevolutPay revolutPay; /** * If this is a {@code sepa_debit} PaymentMethod, this hash contains details about the SEPA * debit bank account. */ @SerializedName("sepa_debit") SepaDebit sepaDebit; /** * If this is a {@code sofort} PaymentMethod, this hash contains details about the SOFORT * payment method. */ @SerializedName("sofort") Sofort sofort; /** * If this is a {@code swish} PaymentMethod, this hash contains details about the Swish payment * method. */ @SerializedName("swish") Swish swish; /** * If this is a TWINT PaymentMethod, this hash contains details about the TWINT payment method. */ @SerializedName("twint") Twint twint; /** * Required. The type of the PaymentMethod. An additional hash is included on * the PaymentMethod with a name matching this value. It contains additional information * specific to the PaymentMethod type. */ @SerializedName("type") Type type; /** * If this is an {@code us_bank_account} PaymentMethod, this hash contains details about the US * bank account payment method. */ @SerializedName("us_bank_account") UsBankAccount usBankAccount; /** * If this is an {@code wechat_pay} PaymentMethod, this hash contains details about the * wechat_pay payment method. */ @SerializedName("wechat_pay") WechatPay wechatPay; /** * If this is a {@code zip} PaymentMethod, this hash contains details about the Zip payment * method. */ @SerializedName("zip") Zip zip; private PaymentMethodData( AcssDebit acssDebit, Affirm affirm, AfterpayClearpay afterpayClearpay, Alipay alipay, AllowRedisplay allowRedisplay, AmazonPay amazonPay, AuBecsDebit auBecsDebit, BacsDebit bacsDebit, Bancontact bancontact, BillingDetails billingDetails, Blik blik, Boleto boleto, Cashapp cashapp, CustomerBalance customerBalance, Eps eps, Map extraParams, Fpx fpx, Giropay giropay, Grabpay grabpay, Ideal ideal, InteracPresent interacPresent, Klarna klarna, Konbini konbini, Link link, MbWay mbWay, Map metadata, Mobilepay mobilepay, Multibanco multibanco, Oxxo oxxo, P24 p24, Paynow paynow, Paypal paypal, Payto payto, Pix pix, Promptpay promptpay, RadarOptions radarOptions, Rechnung rechnung, RevolutPay revolutPay, SepaDebit sepaDebit, Sofort sofort, Swish swish, Twint twint, Type type, UsBankAccount usBankAccount, WechatPay wechatPay, Zip zip) { this.acssDebit = acssDebit; this.affirm = affirm; this.afterpayClearpay = afterpayClearpay; this.alipay = alipay; this.allowRedisplay = allowRedisplay; this.amazonPay = amazonPay; this.auBecsDebit = auBecsDebit; this.bacsDebit = bacsDebit; this.bancontact = bancontact; this.billingDetails = billingDetails; this.blik = blik; this.boleto = boleto; this.cashapp = cashapp; this.customerBalance = customerBalance; this.eps = eps; this.extraParams = extraParams; this.fpx = fpx; this.giropay = giropay; this.grabpay = grabpay; this.ideal = ideal; this.interacPresent = interacPresent; this.klarna = klarna; this.konbini = konbini; this.link = link; this.mbWay = mbWay; this.metadata = metadata; this.mobilepay = mobilepay; this.multibanco = multibanco; this.oxxo = oxxo; this.p24 = p24; this.paynow = paynow; this.paypal = paypal; this.payto = payto; this.pix = pix; this.promptpay = promptpay; this.radarOptions = radarOptions; this.rechnung = rechnung; this.revolutPay = revolutPay; this.sepaDebit = sepaDebit; this.sofort = sofort; this.swish = swish; this.twint = twint; this.type = type; this.usBankAccount = usBankAccount; this.wechatPay = wechatPay; this.zip = zip; } public static Builder builder() { return new Builder(); } public static class Builder { private AcssDebit acssDebit; private Affirm affirm; private AfterpayClearpay afterpayClearpay; private Alipay alipay; private AllowRedisplay allowRedisplay; private AmazonPay amazonPay; private AuBecsDebit auBecsDebit; private BacsDebit bacsDebit; private Bancontact bancontact; private BillingDetails billingDetails; private Blik blik; private Boleto boleto; private Cashapp cashapp; private CustomerBalance customerBalance; private Eps eps; private Map extraParams; private Fpx fpx; private Giropay giropay; private Grabpay grabpay; private Ideal ideal; private InteracPresent interacPresent; private Klarna klarna; private Konbini konbini; private Link link; private MbWay mbWay; private Map metadata; private Mobilepay mobilepay; private Multibanco multibanco; private Oxxo oxxo; private P24 p24; private Paynow paynow; private Paypal paypal; private Payto payto; private Pix pix; private Promptpay promptpay; private RadarOptions radarOptions; private Rechnung rechnung; private RevolutPay revolutPay; private SepaDebit sepaDebit; private Sofort sofort; private Swish swish; private Twint twint; private Type type; private UsBankAccount usBankAccount; private WechatPay wechatPay; private Zip zip; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData build() { return new PaymentIntentConfirmParams.PaymentMethodData( this.acssDebit, this.affirm, this.afterpayClearpay, this.alipay, this.allowRedisplay, this.amazonPay, this.auBecsDebit, this.bacsDebit, this.bancontact, this.billingDetails, this.blik, this.boleto, this.cashapp, this.customerBalance, this.eps, this.extraParams, this.fpx, this.giropay, this.grabpay, this.ideal, this.interacPresent, this.klarna, this.konbini, this.link, this.mbWay, this.metadata, this.mobilepay, this.multibanco, this.oxxo, this.p24, this.paynow, this.paypal, this.payto, this.pix, this.promptpay, this.radarOptions, this.rechnung, this.revolutPay, this.sepaDebit, this.sofort, this.swish, this.twint, this.type, this.usBankAccount, this.wechatPay, this.zip); } /** * If this is an {@code acss_debit} PaymentMethod, this hash contains details about the ACSS * Debit payment method. */ public Builder setAcssDebit( PaymentIntentConfirmParams.PaymentMethodData.AcssDebit acssDebit) { this.acssDebit = acssDebit; return this; } /** * If this is an {@code affirm} PaymentMethod, this hash contains details about the Affirm * payment method. */ public Builder setAffirm(PaymentIntentConfirmParams.PaymentMethodData.Affirm affirm) { this.affirm = affirm; return this; } /** * If this is an {@code AfterpayClearpay} PaymentMethod, this hash contains details about the * AfterpayClearpay payment method. */ public Builder setAfterpayClearpay( PaymentIntentConfirmParams.PaymentMethodData.AfterpayClearpay afterpayClearpay) { this.afterpayClearpay = afterpayClearpay; return this; } /** * If this is an {@code Alipay} PaymentMethod, this hash contains details about the Alipay * payment method. */ public Builder setAlipay(PaymentIntentConfirmParams.PaymentMethodData.Alipay alipay) { this.alipay = alipay; return this; } /** * This field indicates whether this payment method can be shown again to its customer in a * checkout flow. Stripe products such as Checkout and Elements use this field to determine * whether a payment method can be shown as a saved payment method in a checkout flow. The * field defaults to {@code unspecified}. */ public Builder setAllowRedisplay( PaymentIntentConfirmParams.PaymentMethodData.AllowRedisplay allowRedisplay) { this.allowRedisplay = allowRedisplay; return this; } /** * If this is a AmazonPay PaymentMethod, this hash contains details about the AmazonPay * payment method. */ public Builder setAmazonPay( PaymentIntentConfirmParams.PaymentMethodData.AmazonPay amazonPay) { this.amazonPay = amazonPay; return this; } /** * If this is an {@code au_becs_debit} PaymentMethod, this hash contains details about the * bank account. */ public Builder setAuBecsDebit( PaymentIntentConfirmParams.PaymentMethodData.AuBecsDebit auBecsDebit) { this.auBecsDebit = auBecsDebit; return this; } /** * If this is a {@code bacs_debit} PaymentMethod, this hash contains details about the Bacs * Direct Debit bank account. */ public Builder setBacsDebit( PaymentIntentConfirmParams.PaymentMethodData.BacsDebit bacsDebit) { this.bacsDebit = bacsDebit; return this; } /** * If this is a {@code bancontact} PaymentMethod, this hash contains details about the * Bancontact payment method. */ public Builder setBancontact( PaymentIntentConfirmParams.PaymentMethodData.Bancontact bancontact) { this.bancontact = bancontact; return this; } /** * Billing information associated with the PaymentMethod that may be used or required by * particular types of payment methods. */ public Builder setBillingDetails( PaymentIntentConfirmParams.PaymentMethodData.BillingDetails billingDetails) { this.billingDetails = billingDetails; return this; } /** * If this is a {@code blik} PaymentMethod, this hash contains details about the BLIK payment * method. */ public Builder setBlik(PaymentIntentConfirmParams.PaymentMethodData.Blik blik) { this.blik = blik; return this; } /** * If this is a {@code boleto} PaymentMethod, this hash contains details about the Boleto * payment method. */ public Builder setBoleto(PaymentIntentConfirmParams.PaymentMethodData.Boleto boleto) { this.boleto = boleto; return this; } /** * If this is a {@code cashapp} PaymentMethod, this hash contains details about the Cash App * Pay payment method. */ public Builder setCashapp(PaymentIntentConfirmParams.PaymentMethodData.Cashapp cashapp) { this.cashapp = cashapp; return this; } /** * If this is a {@code customer_balance} PaymentMethod, this hash contains details about the * CustomerBalance payment method. */ public Builder setCustomerBalance( PaymentIntentConfirmParams.PaymentMethodData.CustomerBalance customerBalance) { this.customerBalance = customerBalance; return this; } /** * If this is an {@code eps} PaymentMethod, this hash contains details about the EPS payment * method. */ public Builder setEps(PaymentIntentConfirmParams.PaymentMethodData.Eps eps) { this.eps = eps; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodData#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.PaymentMethodData#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * If this is an {@code fpx} PaymentMethod, this hash contains details about the FPX payment * method. */ public Builder setFpx(PaymentIntentConfirmParams.PaymentMethodData.Fpx fpx) { this.fpx = fpx; return this; } /** * If this is a {@code giropay} PaymentMethod, this hash contains details about the Giropay * payment method. */ public Builder setGiropay(PaymentIntentConfirmParams.PaymentMethodData.Giropay giropay) { this.giropay = giropay; return this; } /** * If this is a {@code grabpay} PaymentMethod, this hash contains details about the GrabPay * payment method. */ public Builder setGrabpay(PaymentIntentConfirmParams.PaymentMethodData.Grabpay grabpay) { this.grabpay = grabpay; return this; } /** * If this is an {@code ideal} PaymentMethod, this hash contains details about the iDEAL * payment method. */ public Builder setIdeal(PaymentIntentConfirmParams.PaymentMethodData.Ideal ideal) { this.ideal = ideal; return this; } /** * If this is an {@code interac_present} PaymentMethod, this hash contains details about the * Interac Present payment method. */ public Builder setInteracPresent( PaymentIntentConfirmParams.PaymentMethodData.InteracPresent interacPresent) { this.interacPresent = interacPresent; return this; } /** * If this is a {@code klarna} PaymentMethod, this hash contains details about the Klarna * payment method. */ public Builder setKlarna(PaymentIntentConfirmParams.PaymentMethodData.Klarna klarna) { this.klarna = klarna; return this; } /** * If this is a {@code konbini} PaymentMethod, this hash contains details about the Konbini * payment method. */ public Builder setKonbini(PaymentIntentConfirmParams.PaymentMethodData.Konbini konbini) { this.konbini = konbini; return this; } /** * If this is an {@code Link} PaymentMethod, this hash contains details about the Link payment * method. */ public Builder setLink(PaymentIntentConfirmParams.PaymentMethodData.Link link) { this.link = link; return this; } /** * If this is a MB WAY PaymentMethod, this hash contains details about the MB WAY payment * method. */ public Builder setMbWay(PaymentIntentConfirmParams.PaymentMethodData.MbWay mbWay) { this.mbWay = mbWay; return this; } /** * Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` * call, and subsequent calls add additional key/value pairs to the original map. See {@link * PaymentIntentConfirmParams.PaymentMethodData#metadata} for the field documentation. */ public Builder putMetadata(String key, String value) { if (this.metadata == null) { this.metadata = new HashMap<>(); } this.metadata.put(key, value); return this; } /** * Add all map key/value pairs to `metadata` map. A map is initialized for the first * `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. * See {@link PaymentIntentConfirmParams.PaymentMethodData#metadata} for the field * documentation. */ public Builder putAllMetadata(Map map) { if (this.metadata == null) { this.metadata = new HashMap<>(); } this.metadata.putAll(map); return this; } /** * If this is a {@code mobilepay} PaymentMethod, this hash contains details about the * MobilePay payment method. */ public Builder setMobilepay( PaymentIntentConfirmParams.PaymentMethodData.Mobilepay mobilepay) { this.mobilepay = mobilepay; return this; } /** * If this is a {@code multibanco} PaymentMethod, this hash contains details about the * Multibanco payment method. */ public Builder setMultibanco( PaymentIntentConfirmParams.PaymentMethodData.Multibanco multibanco) { this.multibanco = multibanco; return this; } /** * If this is an {@code oxxo} PaymentMethod, this hash contains details about the OXXO payment * method. */ public Builder setOxxo(PaymentIntentConfirmParams.PaymentMethodData.Oxxo oxxo) { this.oxxo = oxxo; return this; } /** * If this is a {@code p24} PaymentMethod, this hash contains details about the P24 payment * method. */ public Builder setP24(PaymentIntentConfirmParams.PaymentMethodData.P24 p24) { this.p24 = p24; return this; } /** * If this is a {@code paynow} PaymentMethod, this hash contains details about the PayNow * payment method. */ public Builder setPaynow(PaymentIntentConfirmParams.PaymentMethodData.Paynow paynow) { this.paynow = paynow; return this; } /** * If this is a {@code paypal} PaymentMethod, this hash contains details about the PayPal * payment method. */ public Builder setPaypal(PaymentIntentConfirmParams.PaymentMethodData.Paypal paypal) { this.paypal = paypal; return this; } /** * If this is a {@code payto} PaymentMethod, this hash contains details about the PayTo * payment method. */ public Builder setPayto(PaymentIntentConfirmParams.PaymentMethodData.Payto payto) { this.payto = payto; return this; } /** * If this is a {@code pix} PaymentMethod, this hash contains details about the Pix payment * method. */ public Builder setPix(PaymentIntentConfirmParams.PaymentMethodData.Pix pix) { this.pix = pix; return this; } /** * If this is a {@code promptpay} PaymentMethod, this hash contains details about the * PromptPay payment method. */ public Builder setPromptpay( PaymentIntentConfirmParams.PaymentMethodData.Promptpay promptpay) { this.promptpay = promptpay; return this; } /** * Options to configure Radar. See Radar * Session for more information. */ public Builder setRadarOptions( PaymentIntentConfirmParams.PaymentMethodData.RadarOptions radarOptions) { this.radarOptions = radarOptions; return this; } /** * If this is a {@code rechnung} PaymentMethod, this hash contains details about the Rechnung * payment method. */ public Builder setRechnung(PaymentIntentConfirmParams.PaymentMethodData.Rechnung rechnung) { this.rechnung = rechnung; return this; } /** * If this is a {@code Revolut Pay} PaymentMethod, this hash contains details about the * Revolut Pay payment method. */ public Builder setRevolutPay( PaymentIntentConfirmParams.PaymentMethodData.RevolutPay revolutPay) { this.revolutPay = revolutPay; return this; } /** * If this is a {@code sepa_debit} PaymentMethod, this hash contains details about the SEPA * debit bank account. */ public Builder setSepaDebit( PaymentIntentConfirmParams.PaymentMethodData.SepaDebit sepaDebit) { this.sepaDebit = sepaDebit; return this; } /** * If this is a {@code sofort} PaymentMethod, this hash contains details about the SOFORT * payment method. */ public Builder setSofort(PaymentIntentConfirmParams.PaymentMethodData.Sofort sofort) { this.sofort = sofort; return this; } /** * If this is a {@code swish} PaymentMethod, this hash contains details about the Swish * payment method. */ public Builder setSwish(PaymentIntentConfirmParams.PaymentMethodData.Swish swish) { this.swish = swish; return this; } /** * If this is a TWINT PaymentMethod, this hash contains details about the TWINT payment * method. */ public Builder setTwint(PaymentIntentConfirmParams.PaymentMethodData.Twint twint) { this.twint = twint; return this; } /** * Required. The type of the PaymentMethod. An additional hash is included on * the PaymentMethod with a name matching this value. It contains additional information * specific to the PaymentMethod type. */ public Builder setType(PaymentIntentConfirmParams.PaymentMethodData.Type type) { this.type = type; return this; } /** * If this is an {@code us_bank_account} PaymentMethod, this hash contains details about the * US bank account payment method. */ public Builder setUsBankAccount( PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount usBankAccount) { this.usBankAccount = usBankAccount; return this; } /** * If this is an {@code wechat_pay} PaymentMethod, this hash contains details about the * wechat_pay payment method. */ public Builder setWechatPay( PaymentIntentConfirmParams.PaymentMethodData.WechatPay wechatPay) { this.wechatPay = wechatPay; return this; } /** * If this is a {@code zip} PaymentMethod, this hash contains details about the Zip payment * method. */ public Builder setZip(PaymentIntentConfirmParams.PaymentMethodData.Zip zip) { this.zip = zip; return this; } } @Getter public static class AcssDebit { /** Required. Customer's bank account number. */ @SerializedName("account_number") String accountNumber; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. Institution number of the customer's bank. */ @SerializedName("institution_number") String institutionNumber; /** Required. Transit number of the customer's bank. */ @SerializedName("transit_number") String transitNumber; private AcssDebit( String accountNumber, Map extraParams, String institutionNumber, String transitNumber) { this.accountNumber = accountNumber; this.extraParams = extraParams; this.institutionNumber = institutionNumber; this.transitNumber = transitNumber; } public static Builder builder() { return new Builder(); } public static class Builder { private String accountNumber; private Map extraParams; private String institutionNumber; private String transitNumber; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.AcssDebit build() { return new PaymentIntentConfirmParams.PaymentMethodData.AcssDebit( this.accountNumber, this.extraParams, this.institutionNumber, this.transitNumber); } /** Required. Customer's bank account number. */ public Builder setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.AcssDebit#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.AcssDebit#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. Institution number of the customer's bank. */ public Builder setInstitutionNumber(String institutionNumber) { this.institutionNumber = institutionNumber; return this; } /** Required. Transit number of the customer's bank. */ public Builder setTransitNumber(String transitNumber) { this.transitNumber = transitNumber; return this; } } } @Getter public static class Affirm { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Affirm(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Affirm build() { return new PaymentIntentConfirmParams.PaymentMethodData.Affirm(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Affirm#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Affirm#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class AfterpayClearpay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private AfterpayClearpay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.AfterpayClearpay build() { return new PaymentIntentConfirmParams.PaymentMethodData.AfterpayClearpay( this.extraParams); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodData.AfterpayClearpay#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodData.AfterpayClearpay#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Alipay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Alipay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Alipay build() { return new PaymentIntentConfirmParams.PaymentMethodData.Alipay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Alipay#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Alipay#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class AmazonPay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private AmazonPay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.AmazonPay build() { return new PaymentIntentConfirmParams.PaymentMethodData.AmazonPay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.AmazonPay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.AmazonPay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class AuBecsDebit { /** Required. The account number for the bank account. */ @SerializedName("account_number") String accountNumber; /** Required. Bank-State-Branch number of the bank account. */ @SerializedName("bsb_number") String bsbNumber; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private AuBecsDebit(String accountNumber, String bsbNumber, Map extraParams) { this.accountNumber = accountNumber; this.bsbNumber = bsbNumber; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private String accountNumber; private String bsbNumber; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.AuBecsDebit build() { return new PaymentIntentConfirmParams.PaymentMethodData.AuBecsDebit( this.accountNumber, this.bsbNumber, this.extraParams); } /** Required. The account number for the bank account. */ public Builder setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** Required. Bank-State-Branch number of the bank account. */ public Builder setBsbNumber(String bsbNumber) { this.bsbNumber = bsbNumber; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.AuBecsDebit#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.AuBecsDebit#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class BacsDebit { /** Account number of the bank account that the funds will be debited from. */ @SerializedName("account_number") String accountNumber; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Sort code of the bank account. (e.g., {@code 10-20-30}) */ @SerializedName("sort_code") String sortCode; private BacsDebit(String accountNumber, Map extraParams, String sortCode) { this.accountNumber = accountNumber; this.extraParams = extraParams; this.sortCode = sortCode; } public static Builder builder() { return new Builder(); } public static class Builder { private String accountNumber; private Map extraParams; private String sortCode; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.BacsDebit build() { return new PaymentIntentConfirmParams.PaymentMethodData.BacsDebit( this.accountNumber, this.extraParams, this.sortCode); } /** Account number of the bank account that the funds will be debited from. */ public Builder setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.BacsDebit#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.BacsDebit#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Sort code of the bank account. (e.g., {@code 10-20-30}) */ public Builder setSortCode(String sortCode) { this.sortCode = sortCode; return this; } } } @Getter public static class Bancontact { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Bancontact(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Bancontact build() { return new PaymentIntentConfirmParams.PaymentMethodData.Bancontact(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Bancontact#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Bancontact#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class BillingDetails { /** Billing address. */ @SerializedName("address") Object address; /** Email address. */ @SerializedName("email") Object email; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Full name. */ @SerializedName("name") Object name; /** Billing phone number (including extension). */ @SerializedName("phone") Object phone; private BillingDetails( Object address, Object email, Map extraParams, Object name, Object phone) { this.address = address; this.email = email; this.extraParams = extraParams; this.name = name; this.phone = phone; } public static Builder builder() { return new Builder(); } public static class Builder { private Object address; private Object email; private Map extraParams; private Object name; private Object phone; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.BillingDetails build() { return new PaymentIntentConfirmParams.PaymentMethodData.BillingDetails( this.address, this.email, this.extraParams, this.name, this.phone); } /** Billing address. */ public Builder setAddress( PaymentIntentConfirmParams.PaymentMethodData.BillingDetails.Address address) { this.address = address; return this; } /** Billing address. */ public Builder setAddress(EmptyParam address) { this.address = address; return this; } /** Email address. */ public Builder setEmail(String email) { this.email = email; return this; } /** Email address. */ public Builder setEmail(EmptyParam email) { this.email = email; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.BillingDetails#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.BillingDetails#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Full name. */ public Builder setName(String name) { this.name = name; return this; } /** Full name. */ public Builder setName(EmptyParam name) { this.name = name; return this; } /** Billing phone number (including extension). */ public Builder setPhone(String phone) { this.phone = phone; return this; } /** Billing phone number (including extension). */ public Builder setPhone(EmptyParam phone) { this.phone = phone; return this; } } @Getter public static class Address { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private Address( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.BillingDetails.Address build() { return new PaymentIntentConfirmParams.PaymentMethodData.BillingDetails.Address( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO * 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodData.BillingDetails.Address#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodData.BillingDetails.Address#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } } @Getter public static class Blik { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Blik(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Blik build() { return new PaymentIntentConfirmParams.PaymentMethodData.Blik(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Blik#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Blik#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Boleto { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. The tax ID of the customer (CPF for individual consumers or CNPJ * for businesses consumers) */ @SerializedName("tax_id") String taxId; private Boleto(Map extraParams, String taxId) { this.extraParams = extraParams; this.taxId = taxId; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String taxId; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Boleto build() { return new PaymentIntentConfirmParams.PaymentMethodData.Boleto( this.extraParams, this.taxId); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Boleto#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Boleto#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. The tax ID of the customer (CPF for individual consumers or * CNPJ for businesses consumers) */ public Builder setTaxId(String taxId) { this.taxId = taxId; return this; } } } @Getter public static class Cashapp { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Cashapp(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Cashapp build() { return new PaymentIntentConfirmParams.PaymentMethodData.Cashapp(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Cashapp#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Cashapp#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class CustomerBalance { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private CustomerBalance(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.CustomerBalance build() { return new PaymentIntentConfirmParams.PaymentMethodData.CustomerBalance(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.CustomerBalance#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.CustomerBalance#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Eps { /** The customer's bank. */ @SerializedName("bank") Bank bank; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Eps(Bank bank, Map extraParams) { this.bank = bank; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Bank bank; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Eps build() { return new PaymentIntentConfirmParams.PaymentMethodData.Eps(this.bank, this.extraParams); } /** The customer's bank. */ public Builder setBank(PaymentIntentConfirmParams.PaymentMethodData.Eps.Bank bank) { this.bank = bank; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Eps#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Eps#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum Bank implements ApiRequestParams.EnumParam { @SerializedName("arzte_und_apotheker_bank") ARZTE_UND_APOTHEKER_BANK("arzte_und_apotheker_bank"), @SerializedName("austrian_anadi_bank_ag") AUSTRIAN_ANADI_BANK_AG("austrian_anadi_bank_ag"), @SerializedName("bank_austria") BANK_AUSTRIA("bank_austria"), @SerializedName("bankhaus_carl_spangler") BANKHAUS_CARL_SPANGLER("bankhaus_carl_spangler"), @SerializedName("bankhaus_schelhammer_und_schattera_ag") BANKHAUS_SCHELHAMMER_UND_SCHATTERA_AG("bankhaus_schelhammer_und_schattera_ag"), @SerializedName("bawag_psk_ag") BAWAG_PSK_AG("bawag_psk_ag"), @SerializedName("bks_bank_ag") BKS_BANK_AG("bks_bank_ag"), @SerializedName("brull_kallmus_bank_ag") BRULL_KALLMUS_BANK_AG("brull_kallmus_bank_ag"), @SerializedName("btv_vier_lander_bank") BTV_VIER_LANDER_BANK("btv_vier_lander_bank"), @SerializedName("capital_bank_grawe_gruppe_ag") CAPITAL_BANK_GRAWE_GRUPPE_AG("capital_bank_grawe_gruppe_ag"), @SerializedName("deutsche_bank_ag") DEUTSCHE_BANK_AG("deutsche_bank_ag"), @SerializedName("dolomitenbank") DOLOMITENBANK("dolomitenbank"), @SerializedName("easybank_ag") EASYBANK_AG("easybank_ag"), @SerializedName("erste_bank_und_sparkassen") ERSTE_BANK_UND_SPARKASSEN("erste_bank_und_sparkassen"), @SerializedName("hypo_alpeadriabank_international_ag") HYPO_ALPEADRIABANK_INTERNATIONAL_AG("hypo_alpeadriabank_international_ag"), @SerializedName("hypo_bank_burgenland_aktiengesellschaft") HYPO_BANK_BURGENLAND_AKTIENGESELLSCHAFT("hypo_bank_burgenland_aktiengesellschaft"), @SerializedName("hypo_noe_lb_fur_niederosterreich_u_wien") HYPO_NOE_LB_FUR_NIEDEROSTERREICH_U_WIEN("hypo_noe_lb_fur_niederosterreich_u_wien"), @SerializedName("hypo_oberosterreich_salzburg_steiermark") HYPO_OBEROSTERREICH_SALZBURG_STEIERMARK("hypo_oberosterreich_salzburg_steiermark"), @SerializedName("hypo_tirol_bank_ag") HYPO_TIROL_BANK_AG("hypo_tirol_bank_ag"), @SerializedName("hypo_vorarlberg_bank_ag") HYPO_VORARLBERG_BANK_AG("hypo_vorarlberg_bank_ag"), @SerializedName("marchfelder_bank") MARCHFELDER_BANK("marchfelder_bank"), @SerializedName("oberbank_ag") OBERBANK_AG("oberbank_ag"), @SerializedName("raiffeisen_bankengruppe_osterreich") RAIFFEISEN_BANKENGRUPPE_OSTERREICH("raiffeisen_bankengruppe_osterreich"), @SerializedName("schoellerbank_ag") SCHOELLERBANK_AG("schoellerbank_ag"), @SerializedName("sparda_bank_wien") SPARDA_BANK_WIEN("sparda_bank_wien"), @SerializedName("volksbank_gruppe") VOLKSBANK_GRUPPE("volksbank_gruppe"), @SerializedName("volkskreditbank_ag") VOLKSKREDITBANK_AG("volkskreditbank_ag"), @SerializedName("vr_bank_braunau") VR_BANK_BRAUNAU("vr_bank_braunau"); @Getter(onMethod_ = {@Override}) private final String value; Bank(String value) { this.value = value; } } } @Getter public static class Fpx { /** Account holder type for FPX transaction. */ @SerializedName("account_holder_type") AccountHolderType accountHolderType; /** Required. The customer's bank. */ @SerializedName("bank") Bank bank; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Fpx(AccountHolderType accountHolderType, Bank bank, Map extraParams) { this.accountHolderType = accountHolderType; this.bank = bank; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private AccountHolderType accountHolderType; private Bank bank; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Fpx build() { return new PaymentIntentConfirmParams.PaymentMethodData.Fpx( this.accountHolderType, this.bank, this.extraParams); } /** Account holder type for FPX transaction. */ public Builder setAccountHolderType( PaymentIntentConfirmParams.PaymentMethodData.Fpx.AccountHolderType accountHolderType) { this.accountHolderType = accountHolderType; return this; } /** Required. The customer's bank. */ public Builder setBank(PaymentIntentConfirmParams.PaymentMethodData.Fpx.Bank bank) { this.bank = bank; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Fpx#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Fpx#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum AccountHolderType implements ApiRequestParams.EnumParam { @SerializedName("company") COMPANY("company"), @SerializedName("individual") INDIVIDUAL("individual"); @Getter(onMethod_ = {@Override}) private final String value; AccountHolderType(String value) { this.value = value; } } public enum Bank implements ApiRequestParams.EnumParam { @SerializedName("affin_bank") AFFIN_BANK("affin_bank"), @SerializedName("agrobank") AGROBANK("agrobank"), @SerializedName("alliance_bank") ALLIANCE_BANK("alliance_bank"), @SerializedName("ambank") AMBANK("ambank"), @SerializedName("bank_islam") BANK_ISLAM("bank_islam"), @SerializedName("bank_muamalat") BANK_MUAMALAT("bank_muamalat"), @SerializedName("bank_of_china") BANK_OF_CHINA("bank_of_china"), @SerializedName("bank_rakyat") BANK_RAKYAT("bank_rakyat"), @SerializedName("bsn") BSN("bsn"), @SerializedName("cimb") CIMB("cimb"), @SerializedName("deutsche_bank") DEUTSCHE_BANK("deutsche_bank"), @SerializedName("hong_leong_bank") HONG_LEONG_BANK("hong_leong_bank"), @SerializedName("hsbc") HSBC("hsbc"), @SerializedName("kfh") KFH("kfh"), @SerializedName("maybank2e") MAYBANK2E("maybank2e"), @SerializedName("maybank2u") MAYBANK2U("maybank2u"), @SerializedName("ocbc") OCBC("ocbc"), @SerializedName("pb_enterprise") PB_ENTERPRISE("pb_enterprise"), @SerializedName("public_bank") PUBLIC_BANK("public_bank"), @SerializedName("rhb") RHB("rhb"), @SerializedName("standard_chartered") STANDARD_CHARTERED("standard_chartered"), @SerializedName("uob") UOB("uob"); @Getter(onMethod_ = {@Override}) private final String value; Bank(String value) { this.value = value; } } } @Getter public static class Giropay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Giropay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Giropay build() { return new PaymentIntentConfirmParams.PaymentMethodData.Giropay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Giropay#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Giropay#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Grabpay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Grabpay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Grabpay build() { return new PaymentIntentConfirmParams.PaymentMethodData.Grabpay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Grabpay#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Grabpay#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Ideal { /** The customer's bank. */ @SerializedName("bank") Bank bank; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Ideal(Bank bank, Map extraParams) { this.bank = bank; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Bank bank; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Ideal build() { return new PaymentIntentConfirmParams.PaymentMethodData.Ideal( this.bank, this.extraParams); } /** The customer's bank. */ public Builder setBank(PaymentIntentConfirmParams.PaymentMethodData.Ideal.Bank bank) { this.bank = bank; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Ideal#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Ideal#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum Bank implements ApiRequestParams.EnumParam { @SerializedName("abn_amro") ABN_AMRO("abn_amro"), @SerializedName("asn_bank") ASN_BANK("asn_bank"), @SerializedName("bunq") BUNQ("bunq"), @SerializedName("handelsbanken") HANDELSBANKEN("handelsbanken"), @SerializedName("ing") ING("ing"), @SerializedName("knab") KNAB("knab"), @SerializedName("moneyou") MONEYOU("moneyou"), @SerializedName("n26") N26("n26"), @SerializedName("nn") NN("nn"), @SerializedName("rabobank") RABOBANK("rabobank"), @SerializedName("regiobank") REGIOBANK("regiobank"), @SerializedName("revolut") REVOLUT("revolut"), @SerializedName("sns_bank") SNS_BANK("sns_bank"), @SerializedName("triodos_bank") TRIODOS_BANK("triodos_bank"), @SerializedName("van_lanschot") VAN_LANSCHOT("van_lanschot"), @SerializedName("yoursafe") YOURSAFE("yoursafe"); @Getter(onMethod_ = {@Override}) private final String value; Bank(String value) { this.value = value; } } } @Getter public static class InteracPresent { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private InteracPresent(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.InteracPresent build() { return new PaymentIntentConfirmParams.PaymentMethodData.InteracPresent(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.InteracPresent#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.InteracPresent#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Klarna { /** Customer's date of birth. */ @SerializedName("dob") Dob dob; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Klarna(Dob dob, Map extraParams) { this.dob = dob; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Dob dob; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Klarna build() { return new PaymentIntentConfirmParams.PaymentMethodData.Klarna( this.dob, this.extraParams); } /** Customer's date of birth. */ public Builder setDob(PaymentIntentConfirmParams.PaymentMethodData.Klarna.Dob dob) { this.dob = dob; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Klarna#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Klarna#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } @Getter public static class Dob { /** Required. The day of birth, between 1 and 31. */ @SerializedName("day") Long day; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The month of birth, between 1 and 12. */ @SerializedName("month") Long month; /** Required. The four-digit year of birth. */ @SerializedName("year") Long year; private Dob(Long day, Map extraParams, Long month, Long year) { this.day = day; this.extraParams = extraParams; this.month = month; this.year = year; } public static Builder builder() { return new Builder(); } public static class Builder { private Long day; private Map extraParams; private Long month; private Long year; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Klarna.Dob build() { return new PaymentIntentConfirmParams.PaymentMethodData.Klarna.Dob( this.day, this.extraParams, this.month, this.year); } /** Required. The day of birth, between 1 and 31. */ public Builder setDay(Long day) { this.day = day; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Klarna.Dob#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Klarna.Dob#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The month of birth, between 1 and 12. */ public Builder setMonth(Long month) { this.month = month; return this; } /** Required. The four-digit year of birth. */ public Builder setYear(Long year) { this.year = year; return this; } } } } @Getter public static class Konbini { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Konbini(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Konbini build() { return new PaymentIntentConfirmParams.PaymentMethodData.Konbini(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Konbini#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Konbini#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Link { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Link(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Link build() { return new PaymentIntentConfirmParams.PaymentMethodData.Link(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Link#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Link#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class MbWay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private MbWay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.MbWay build() { return new PaymentIntentConfirmParams.PaymentMethodData.MbWay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.MbWay#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.MbWay#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Mobilepay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Mobilepay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Mobilepay build() { return new PaymentIntentConfirmParams.PaymentMethodData.Mobilepay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Mobilepay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Mobilepay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Multibanco { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Multibanco(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Multibanco build() { return new PaymentIntentConfirmParams.PaymentMethodData.Multibanco(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Multibanco#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Multibanco#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Oxxo { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Oxxo(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Oxxo build() { return new PaymentIntentConfirmParams.PaymentMethodData.Oxxo(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Oxxo#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Oxxo#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class P24 { /** The customer's bank. */ @SerializedName("bank") Bank bank; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private P24(Bank bank, Map extraParams) { this.bank = bank; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Bank bank; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.P24 build() { return new PaymentIntentConfirmParams.PaymentMethodData.P24(this.bank, this.extraParams); } /** The customer's bank. */ public Builder setBank(PaymentIntentConfirmParams.PaymentMethodData.P24.Bank bank) { this.bank = bank; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.P24#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.P24#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum Bank implements ApiRequestParams.EnumParam { @SerializedName("alior_bank") ALIOR_BANK("alior_bank"), @SerializedName("bank_millennium") BANK_MILLENNIUM("bank_millennium"), @SerializedName("bank_nowy_bfg_sa") BANK_NOWY_BFG_SA("bank_nowy_bfg_sa"), @SerializedName("bank_pekao_sa") BANK_PEKAO_SA("bank_pekao_sa"), @SerializedName("banki_spbdzielcze") BANKI_SPBDZIELCZE("banki_spbdzielcze"), @SerializedName("blik") BLIK("blik"), @SerializedName("bnp_paribas") BNP_PARIBAS("bnp_paribas"), @SerializedName("boz") BOZ("boz"), @SerializedName("citi_handlowy") CITI_HANDLOWY("citi_handlowy"), @SerializedName("credit_agricole") CREDIT_AGRICOLE("credit_agricole"), @SerializedName("envelobank") ENVELOBANK("envelobank"), @SerializedName("etransfer_pocztowy24") ETRANSFER_POCZTOWY24("etransfer_pocztowy24"), @SerializedName("getin_bank") GETIN_BANK("getin_bank"), @SerializedName("ideabank") IDEABANK("ideabank"), @SerializedName("ing") ING("ing"), @SerializedName("inteligo") INTELIGO("inteligo"), @SerializedName("mbank_mtransfer") MBANK_MTRANSFER("mbank_mtransfer"), @SerializedName("nest_przelew") NEST_PRZELEW("nest_przelew"), @SerializedName("noble_pay") NOBLE_PAY("noble_pay"), @SerializedName("pbac_z_ipko") PBAC_Z_IPKO("pbac_z_ipko"), @SerializedName("plus_bank") PLUS_BANK("plus_bank"), @SerializedName("santander_przelew24") SANTANDER_PRZELEW24("santander_przelew24"), @SerializedName("tmobile_usbugi_bankowe") TMOBILE_USBUGI_BANKOWE("tmobile_usbugi_bankowe"), @SerializedName("toyota_bank") TOYOTA_BANK("toyota_bank"), @SerializedName("velobank") VELOBANK("velobank"), @SerializedName("volkswagen_bank") VOLKSWAGEN_BANK("volkswagen_bank"); @Getter(onMethod_ = {@Override}) private final String value; Bank(String value) { this.value = value; } } } @Getter public static class Paynow { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Paynow(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Paynow build() { return new PaymentIntentConfirmParams.PaymentMethodData.Paynow(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Paynow#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Paynow#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Paypal { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Paypal(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Paypal build() { return new PaymentIntentConfirmParams.PaymentMethodData.Paypal(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Paypal#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Paypal#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Payto { /** The account number for the bank account. */ @SerializedName("account_number") String accountNumber; /** Bank-State-Branch number of the bank account. */ @SerializedName("bsb_number") String bsbNumber; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The PayID alias for the bank account. */ @SerializedName("pay_id") String payId; private Payto( String accountNumber, String bsbNumber, Map extraParams, String payId) { this.accountNumber = accountNumber; this.bsbNumber = bsbNumber; this.extraParams = extraParams; this.payId = payId; } public static Builder builder() { return new Builder(); } public static class Builder { private String accountNumber; private String bsbNumber; private Map extraParams; private String payId; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Payto build() { return new PaymentIntentConfirmParams.PaymentMethodData.Payto( this.accountNumber, this.bsbNumber, this.extraParams, this.payId); } /** The account number for the bank account. */ public Builder setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** Bank-State-Branch number of the bank account. */ public Builder setBsbNumber(String bsbNumber) { this.bsbNumber = bsbNumber; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Payto#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Payto#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The PayID alias for the bank account. */ public Builder setPayId(String payId) { this.payId = payId; return this; } } } @Getter public static class Pix { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Pix(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Pix build() { return new PaymentIntentConfirmParams.PaymentMethodData.Pix(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Pix#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Pix#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Promptpay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Promptpay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Promptpay build() { return new PaymentIntentConfirmParams.PaymentMethodData.Promptpay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Promptpay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Promptpay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class RadarOptions { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * A Radar Session is a snapshot of * the browser metadata and device details that help Radar make more accurate predictions on * your payments. */ @SerializedName("session") String session; private RadarOptions(Map extraParams, String session) { this.extraParams = extraParams; this.session = session; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String session; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.RadarOptions build() { return new PaymentIntentConfirmParams.PaymentMethodData.RadarOptions( this.extraParams, this.session); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.RadarOptions#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.RadarOptions#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * A Radar Session is a snapshot * of the browser metadata and device details that help Radar make more accurate predictions * on your payments. */ public Builder setSession(String session) { this.session = session; return this; } } } @Getter public static class Rechnung { /** Required. Customer's date of birth */ @SerializedName("dob") Dob dob; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Rechnung(Dob dob, Map extraParams) { this.dob = dob; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Dob dob; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Rechnung build() { return new PaymentIntentConfirmParams.PaymentMethodData.Rechnung( this.dob, this.extraParams); } /** Required. Customer's date of birth */ public Builder setDob(PaymentIntentConfirmParams.PaymentMethodData.Rechnung.Dob dob) { this.dob = dob; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Rechnung#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Rechnung#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } @Getter public static class Dob { /** Required. The day of birth, between 1 and 31. */ @SerializedName("day") Long day; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. The month of birth, between 1 and 12. */ @SerializedName("month") Long month; /** Required. The four-digit year of birth. */ @SerializedName("year") Long year; private Dob(Long day, Map extraParams, Long month, Long year) { this.day = day; this.extraParams = extraParams; this.month = month; this.year = year; } public static Builder builder() { return new Builder(); } public static class Builder { private Long day; private Map extraParams; private Long month; private Long year; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Rechnung.Dob build() { return new PaymentIntentConfirmParams.PaymentMethodData.Rechnung.Dob( this.day, this.extraParams, this.month, this.year); } /** Required. The day of birth, between 1 and 31. */ public Builder setDay(Long day) { this.day = day; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Rechnung.Dob#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Rechnung.Dob#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. The month of birth, between 1 and 12. */ public Builder setMonth(Long month) { this.month = month; return this; } /** Required. The four-digit year of birth. */ public Builder setYear(Long year) { this.year = year; return this; } } } } @Getter public static class RevolutPay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private RevolutPay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.RevolutPay build() { return new PaymentIntentConfirmParams.PaymentMethodData.RevolutPay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.RevolutPay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.RevolutPay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class SepaDebit { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. IBAN of the bank account. */ @SerializedName("iban") String iban; private SepaDebit(Map extraParams, String iban) { this.extraParams = extraParams; this.iban = iban; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String iban; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.SepaDebit build() { return new PaymentIntentConfirmParams.PaymentMethodData.SepaDebit( this.extraParams, this.iban); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.SepaDebit#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.SepaDebit#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. IBAN of the bank account. */ public Builder setIban(String iban) { this.iban = iban; return this; } } } @Getter public static class Sofort { /** * Required. Two-letter ISO code representing the country the bank account is * located in. */ @SerializedName("country") Country country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Sofort(Country country, Map extraParams) { this.country = country; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Country country; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Sofort build() { return new PaymentIntentConfirmParams.PaymentMethodData.Sofort( this.country, this.extraParams); } /** * Required. Two-letter ISO code representing the country the bank account * is located in. */ public Builder setCountry( PaymentIntentConfirmParams.PaymentMethodData.Sofort.Country country) { this.country = country; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Sofort#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Sofort#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum Country implements ApiRequestParams.EnumParam { @SerializedName("AT") AT("AT"), @SerializedName("BE") BE("BE"), @SerializedName("DE") DE("DE"), @SerializedName("ES") ES("ES"), @SerializedName("IT") IT("IT"), @SerializedName("NL") NL("NL"); @Getter(onMethod_ = {@Override}) private final String value; Country(String value) { this.value = value; } } } @Getter public static class Swish { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Swish(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Swish build() { return new PaymentIntentConfirmParams.PaymentMethodData.Swish(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Swish#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Swish#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Twint { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Twint(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Twint build() { return new PaymentIntentConfirmParams.PaymentMethodData.Twint(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Twint#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Twint#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class UsBankAccount { /** Account holder type: individual or company. */ @SerializedName("account_holder_type") AccountHolderType accountHolderType; /** Account number of the bank account. */ @SerializedName("account_number") String accountNumber; /** Account type: checkings or savings. Defaults to checking if omitted. */ @SerializedName("account_type") AccountType accountType; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The ID of a Financial Connections Account to use as a payment method. */ @SerializedName("financial_connections_account") String financialConnectionsAccount; /** Routing number of the bank account. */ @SerializedName("routing_number") String routingNumber; private UsBankAccount( AccountHolderType accountHolderType, String accountNumber, AccountType accountType, Map extraParams, String financialConnectionsAccount, String routingNumber) { this.accountHolderType = accountHolderType; this.accountNumber = accountNumber; this.accountType = accountType; this.extraParams = extraParams; this.financialConnectionsAccount = financialConnectionsAccount; this.routingNumber = routingNumber; } public static Builder builder() { return new Builder(); } public static class Builder { private AccountHolderType accountHolderType; private String accountNumber; private AccountType accountType; private Map extraParams; private String financialConnectionsAccount; private String routingNumber; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount build() { return new PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount( this.accountHolderType, this.accountNumber, this.accountType, this.extraParams, this.financialConnectionsAccount, this.routingNumber); } /** Account holder type: individual or company. */ public Builder setAccountHolderType( PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount.AccountHolderType accountHolderType) { this.accountHolderType = accountHolderType; return this; } /** Account number of the bank account. */ public Builder setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; return this; } /** Account type: checkings or savings. Defaults to checking if omitted. */ public Builder setAccountType( PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount.AccountType accountType) { this.accountType = accountType; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.UsBankAccount#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The ID of a Financial Connections Account to use as a payment method. */ public Builder setFinancialConnectionsAccount(String financialConnectionsAccount) { this.financialConnectionsAccount = financialConnectionsAccount; return this; } /** Routing number of the bank account. */ public Builder setRoutingNumber(String routingNumber) { this.routingNumber = routingNumber; return this; } } public enum AccountHolderType implements ApiRequestParams.EnumParam { @SerializedName("company") COMPANY("company"), @SerializedName("individual") INDIVIDUAL("individual"); @Getter(onMethod_ = {@Override}) private final String value; AccountHolderType(String value) { this.value = value; } } public enum AccountType implements ApiRequestParams.EnumParam { @SerializedName("checking") CHECKING("checking"), @SerializedName("savings") SAVINGS("savings"); @Getter(onMethod_ = {@Override}) private final String value; AccountType(String value) { this.value = value; } } } @Getter public static class WechatPay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private WechatPay(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.WechatPay build() { return new PaymentIntentConfirmParams.PaymentMethodData.WechatPay(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.WechatPay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.WechatPay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Zip { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Zip(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodData.Zip build() { return new PaymentIntentConfirmParams.PaymentMethodData.Zip(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Zip#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodData.Zip#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } public enum AllowRedisplay implements ApiRequestParams.EnumParam { @SerializedName("always") ALWAYS("always"), @SerializedName("limited") LIMITED("limited"), @SerializedName("unspecified") UNSPECIFIED("unspecified"); @Getter(onMethod_ = {@Override}) private final String value; AllowRedisplay(String value) { this.value = value; } } public enum Type implements ApiRequestParams.EnumParam { @SerializedName("acss_debit") ACSS_DEBIT("acss_debit"), @SerializedName("affirm") AFFIRM("affirm"), @SerializedName("afterpay_clearpay") AFTERPAY_CLEARPAY("afterpay_clearpay"), @SerializedName("alipay") ALIPAY("alipay"), @SerializedName("amazon_pay") AMAZON_PAY("amazon_pay"), @SerializedName("au_becs_debit") AU_BECS_DEBIT("au_becs_debit"), @SerializedName("bacs_debit") BACS_DEBIT("bacs_debit"), @SerializedName("bancontact") BANCONTACT("bancontact"), @SerializedName("blik") BLIK("blik"), @SerializedName("boleto") BOLETO("boleto"), @SerializedName("cashapp") CASHAPP("cashapp"), @SerializedName("customer_balance") CUSTOMER_BALANCE("customer_balance"), @SerializedName("eps") EPS("eps"), @SerializedName("fpx") FPX("fpx"), @SerializedName("giropay") GIROPAY("giropay"), @SerializedName("grabpay") GRABPAY("grabpay"), @SerializedName("ideal") IDEAL("ideal"), @SerializedName("klarna") KLARNA("klarna"), @SerializedName("konbini") KONBINI("konbini"), @SerializedName("link") LINK("link"), @SerializedName("mb_way") MB_WAY("mb_way"), @SerializedName("mobilepay") MOBILEPAY("mobilepay"), @SerializedName("multibanco") MULTIBANCO("multibanco"), @SerializedName("oxxo") OXXO("oxxo"), @SerializedName("p24") P24("p24"), @SerializedName("paynow") PAYNOW("paynow"), @SerializedName("paypal") PAYPAL("paypal"), @SerializedName("payto") PAYTO("payto"), @SerializedName("pix") PIX("pix"), @SerializedName("promptpay") PROMPTPAY("promptpay"), @SerializedName("rechnung") RECHNUNG("rechnung"), @SerializedName("revolut_pay") REVOLUT_PAY("revolut_pay"), @SerializedName("sepa_debit") SEPA_DEBIT("sepa_debit"), @SerializedName("sofort") SOFORT("sofort"), @SerializedName("swish") SWISH("swish"), @SerializedName("twint") TWINT("twint"), @SerializedName("us_bank_account") US_BANK_ACCOUNT("us_bank_account"), @SerializedName("wechat_pay") WECHAT_PAY("wechat_pay"), @SerializedName("zip") ZIP("zip"); @Getter(onMethod_ = {@Override}) private final String value; Type(String value) { this.value = value; } } } @Getter public static class PaymentMethodOptions { /** * If this is a {@code acss_debit} PaymentMethod, this sub-hash contains details about the ACSS * Debit payment method options. */ @SerializedName("acss_debit") Object acssDebit; /** * If this is an {@code affirm} PaymentMethod, this sub-hash contains details about the Affirm * payment method options. */ @SerializedName("affirm") Object affirm; /** * If this is a {@code afterpay_clearpay} PaymentMethod, this sub-hash contains details about * the Afterpay Clearpay payment method options. */ @SerializedName("afterpay_clearpay") Object afterpayClearpay; /** * If this is a {@code alipay} PaymentMethod, this sub-hash contains details about the Alipay * payment method options. */ @SerializedName("alipay") Object alipay; /** * If this is a {@code amazon_pay} PaymentMethod, this sub-hash contains details about the * Amazon Pay payment method options. */ @SerializedName("amazon_pay") Object amazonPay; /** * If this is a {@code au_becs_debit} PaymentMethod, this sub-hash contains details about the AU * BECS Direct Debit payment method options. */ @SerializedName("au_becs_debit") Object auBecsDebit; /** * If this is a {@code bacs_debit} PaymentMethod, this sub-hash contains details about the BACS * Debit payment method options. */ @SerializedName("bacs_debit") Object bacsDebit; /** * If this is a {@code bancontact} PaymentMethod, this sub-hash contains details about the * Bancontact payment method options. */ @SerializedName("bancontact") Object bancontact; /** * If this is a {@code blik} PaymentMethod, this sub-hash contains details about the BLIK * payment method options. */ @SerializedName("blik") Object blik; /** * If this is a {@code boleto} PaymentMethod, this sub-hash contains details about the Boleto * payment method options. */ @SerializedName("boleto") Object boleto; /** Configuration for any card payments attempted on this PaymentIntent. */ @SerializedName("card") Object card; /** * If this is a {@code card_present} PaymentMethod, this sub-hash contains details about the * Card Present payment method options. */ @SerializedName("card_present") Object cardPresent; /** * If this is a {@code cashapp} PaymentMethod, this sub-hash contains details about the Cash App * Pay payment method options. */ @SerializedName("cashapp") Object cashapp; /** * If this is a {@code customer balance} PaymentMethod, this sub-hash contains details about the * customer balance payment method options. */ @SerializedName("customer_balance") Object customerBalance; /** * If this is a {@code eps} PaymentMethod, this sub-hash contains details about the EPS payment * method options. */ @SerializedName("eps") Object eps; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * If this is a {@code fpx} PaymentMethod, this sub-hash contains details about the FPX payment * method options. */ @SerializedName("fpx") Object fpx; /** * If this is a {@code giropay} PaymentMethod, this sub-hash contains details about the Giropay * payment method options. */ @SerializedName("giropay") Object giropay; /** * If this is a {@code grabpay} PaymentMethod, this sub-hash contains details about the Grabpay * payment method options. */ @SerializedName("grabpay") Object grabpay; /** * If this is a {@code ideal} PaymentMethod, this sub-hash contains details about the Ideal * payment method options. */ @SerializedName("ideal") Object ideal; /** * If this is a {@code interac_present} PaymentMethod, this sub-hash contains details about the * Card Present payment method options. */ @SerializedName("interac_present") Object interacPresent; /** * If this is a {@code klarna} PaymentMethod, this sub-hash contains details about the Klarna * payment method options. */ @SerializedName("klarna") Object klarna; /** * If this is a {@code konbini} PaymentMethod, this sub-hash contains details about the Konbini * payment method options. */ @SerializedName("konbini") Object konbini; /** * If this is a {@code link} PaymentMethod, this sub-hash contains details about the Link * payment method options. */ @SerializedName("link") Object link; /** * If this is a {@code mb_way} PaymentMethod, this sub-hash contains details about the MB WAY * payment method options. */ @SerializedName("mb_way") Object mbWay; /** * If this is a {@code MobilePay} PaymentMethod, this sub-hash contains details about the * MobilePay payment method options. */ @SerializedName("mobilepay") Object mobilepay; /** * If this is a {@code multibanco} PaymentMethod, this sub-hash contains details about the * Multibanco payment method options. */ @SerializedName("multibanco") Object multibanco; /** * If this is a {@code oxxo} PaymentMethod, this sub-hash contains details about the OXXO * payment method options. */ @SerializedName("oxxo") Object oxxo; /** * If this is a {@code p24} PaymentMethod, this sub-hash contains details about the Przelewy24 * payment method options. */ @SerializedName("p24") Object p24; /** * If this is a {@code paynow} PaymentMethod, this sub-hash contains details about the PayNow * payment method options. */ @SerializedName("paynow") Object paynow; /** * If this is a {@code paypal} PaymentMethod, this sub-hash contains details about the PayPal * payment method options. */ @SerializedName("paypal") Object paypal; /** * If this is a {@code payto} PaymentMethod, this sub-hash contains details about the PayTo * payment method options. */ @SerializedName("payto") Object payto; /** * If this is a {@code pix} PaymentMethod, this sub-hash contains details about the Pix payment * method options. */ @SerializedName("pix") Object pix; /** * If this is a {@code promptpay} PaymentMethod, this sub-hash contains details about the * PromptPay payment method options. */ @SerializedName("promptpay") Object promptpay; /** * If this is a {@code rechnung} PaymentMethod, this sub-hash contains details about the * Rechnung payment method options. */ @SerializedName("rechnung") Object rechnung; /** * If this is a {@code revolut_pay} PaymentMethod, this sub-hash contains details about the * Revolut Pay payment method options. */ @SerializedName("revolut_pay") Object revolutPay; /** * If this is a {@code sepa_debit} PaymentIntent, this sub-hash contains details about the SEPA * Debit payment method options. */ @SerializedName("sepa_debit") Object sepaDebit; /** * If this is a {@code sofort} PaymentMethod, this sub-hash contains details about the SOFORT * payment method options. */ @SerializedName("sofort") Object sofort; /** * If this is a {@code Swish} PaymentMethod, this sub-hash contains details about the Swish * payment method options. */ @SerializedName("swish") Object swish; /** * If this is a {@code twint} PaymentMethod, this sub-hash contains details about the TWINT * payment method options. */ @SerializedName("twint") Object twint; /** * If this is a {@code us_bank_account} PaymentMethod, this sub-hash contains details about the * US bank account payment method options. */ @SerializedName("us_bank_account") Object usBankAccount; /** * If this is a {@code wechat_pay} PaymentMethod, this sub-hash contains details about the * WeChat Pay payment method options. */ @SerializedName("wechat_pay") Object wechatPay; /** * If this is a {@code zip} PaymentMethod, this sub-hash contains details about the Zip payment * method options. */ @SerializedName("zip") Object zip; private PaymentMethodOptions( Object acssDebit, Object affirm, Object afterpayClearpay, Object alipay, Object amazonPay, Object auBecsDebit, Object bacsDebit, Object bancontact, Object blik, Object boleto, Object card, Object cardPresent, Object cashapp, Object customerBalance, Object eps, Map extraParams, Object fpx, Object giropay, Object grabpay, Object ideal, Object interacPresent, Object klarna, Object konbini, Object link, Object mbWay, Object mobilepay, Object multibanco, Object oxxo, Object p24, Object paynow, Object paypal, Object payto, Object pix, Object promptpay, Object rechnung, Object revolutPay, Object sepaDebit, Object sofort, Object swish, Object twint, Object usBankAccount, Object wechatPay, Object zip) { this.acssDebit = acssDebit; this.affirm = affirm; this.afterpayClearpay = afterpayClearpay; this.alipay = alipay; this.amazonPay = amazonPay; this.auBecsDebit = auBecsDebit; this.bacsDebit = bacsDebit; this.bancontact = bancontact; this.blik = blik; this.boleto = boleto; this.card = card; this.cardPresent = cardPresent; this.cashapp = cashapp; this.customerBalance = customerBalance; this.eps = eps; this.extraParams = extraParams; this.fpx = fpx; this.giropay = giropay; this.grabpay = grabpay; this.ideal = ideal; this.interacPresent = interacPresent; this.klarna = klarna; this.konbini = konbini; this.link = link; this.mbWay = mbWay; this.mobilepay = mobilepay; this.multibanco = multibanco; this.oxxo = oxxo; this.p24 = p24; this.paynow = paynow; this.paypal = paypal; this.payto = payto; this.pix = pix; this.promptpay = promptpay; this.rechnung = rechnung; this.revolutPay = revolutPay; this.sepaDebit = sepaDebit; this.sofort = sofort; this.swish = swish; this.twint = twint; this.usBankAccount = usBankAccount; this.wechatPay = wechatPay; this.zip = zip; } public static Builder builder() { return new Builder(); } public static class Builder { private Object acssDebit; private Object affirm; private Object afterpayClearpay; private Object alipay; private Object amazonPay; private Object auBecsDebit; private Object bacsDebit; private Object bancontact; private Object blik; private Object boleto; private Object card; private Object cardPresent; private Object cashapp; private Object customerBalance; private Object eps; private Map extraParams; private Object fpx; private Object giropay; private Object grabpay; private Object ideal; private Object interacPresent; private Object klarna; private Object konbini; private Object link; private Object mbWay; private Object mobilepay; private Object multibanco; private Object oxxo; private Object p24; private Object paynow; private Object paypal; private Object payto; private Object pix; private Object promptpay; private Object rechnung; private Object revolutPay; private Object sepaDebit; private Object sofort; private Object swish; private Object twint; private Object usBankAccount; private Object wechatPay; private Object zip; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions( this.acssDebit, this.affirm, this.afterpayClearpay, this.alipay, this.amazonPay, this.auBecsDebit, this.bacsDebit, this.bancontact, this.blik, this.boleto, this.card, this.cardPresent, this.cashapp, this.customerBalance, this.eps, this.extraParams, this.fpx, this.giropay, this.grabpay, this.ideal, this.interacPresent, this.klarna, this.konbini, this.link, this.mbWay, this.mobilepay, this.multibanco, this.oxxo, this.p24, this.paynow, this.paypal, this.payto, this.pix, this.promptpay, this.rechnung, this.revolutPay, this.sepaDebit, this.sofort, this.swish, this.twint, this.usBankAccount, this.wechatPay, this.zip); } /** * If this is a {@code acss_debit} PaymentMethod, this sub-hash contains details about the * ACSS Debit payment method options. */ public Builder setAcssDebit( PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit acssDebit) { this.acssDebit = acssDebit; return this; } /** * If this is a {@code acss_debit} PaymentMethod, this sub-hash contains details about the * ACSS Debit payment method options. */ public Builder setAcssDebit(EmptyParam acssDebit) { this.acssDebit = acssDebit; return this; } /** * If this is an {@code affirm} PaymentMethod, this sub-hash contains details about the Affirm * payment method options. */ public Builder setAffirm(PaymentIntentConfirmParams.PaymentMethodOptions.Affirm affirm) { this.affirm = affirm; return this; } /** * If this is an {@code affirm} PaymentMethod, this sub-hash contains details about the Affirm * payment method options. */ public Builder setAffirm(EmptyParam affirm) { this.affirm = affirm; return this; } /** * If this is a {@code afterpay_clearpay} PaymentMethod, this sub-hash contains details about * the Afterpay Clearpay payment method options. */ public Builder setAfterpayClearpay( PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay afterpayClearpay) { this.afterpayClearpay = afterpayClearpay; return this; } /** * If this is a {@code afterpay_clearpay} PaymentMethod, this sub-hash contains details about * the Afterpay Clearpay payment method options. */ public Builder setAfterpayClearpay(EmptyParam afterpayClearpay) { this.afterpayClearpay = afterpayClearpay; return this; } /** * If this is a {@code alipay} PaymentMethod, this sub-hash contains details about the Alipay * payment method options. */ public Builder setAlipay(PaymentIntentConfirmParams.PaymentMethodOptions.Alipay alipay) { this.alipay = alipay; return this; } /** * If this is a {@code alipay} PaymentMethod, this sub-hash contains details about the Alipay * payment method options. */ public Builder setAlipay(EmptyParam alipay) { this.alipay = alipay; return this; } /** * If this is a {@code amazon_pay} PaymentMethod, this sub-hash contains details about the * Amazon Pay payment method options. */ public Builder setAmazonPay( PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay amazonPay) { this.amazonPay = amazonPay; return this; } /** * If this is a {@code amazon_pay} PaymentMethod, this sub-hash contains details about the * Amazon Pay payment method options. */ public Builder setAmazonPay(EmptyParam amazonPay) { this.amazonPay = amazonPay; return this; } /** * If this is a {@code au_becs_debit} PaymentMethod, this sub-hash contains details about the * AU BECS Direct Debit payment method options. */ public Builder setAuBecsDebit( PaymentIntentConfirmParams.PaymentMethodOptions.AuBecsDebit auBecsDebit) { this.auBecsDebit = auBecsDebit; return this; } /** * If this is a {@code au_becs_debit} PaymentMethod, this sub-hash contains details about the * AU BECS Direct Debit payment method options. */ public Builder setAuBecsDebit(EmptyParam auBecsDebit) { this.auBecsDebit = auBecsDebit; return this; } /** * If this is a {@code bacs_debit} PaymentMethod, this sub-hash contains details about the * BACS Debit payment method options. */ public Builder setBacsDebit( PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit bacsDebit) { this.bacsDebit = bacsDebit; return this; } /** * If this is a {@code bacs_debit} PaymentMethod, this sub-hash contains details about the * BACS Debit payment method options. */ public Builder setBacsDebit(EmptyParam bacsDebit) { this.bacsDebit = bacsDebit; return this; } /** * If this is a {@code bancontact} PaymentMethod, this sub-hash contains details about the * Bancontact payment method options. */ public Builder setBancontact( PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact bancontact) { this.bancontact = bancontact; return this; } /** * If this is a {@code bancontact} PaymentMethod, this sub-hash contains details about the * Bancontact payment method options. */ public Builder setBancontact(EmptyParam bancontact) { this.bancontact = bancontact; return this; } /** * If this is a {@code blik} PaymentMethod, this sub-hash contains details about the BLIK * payment method options. */ public Builder setBlik(PaymentIntentConfirmParams.PaymentMethodOptions.Blik blik) { this.blik = blik; return this; } /** * If this is a {@code blik} PaymentMethod, this sub-hash contains details about the BLIK * payment method options. */ public Builder setBlik(EmptyParam blik) { this.blik = blik; return this; } /** * If this is a {@code boleto} PaymentMethod, this sub-hash contains details about the Boleto * payment method options. */ public Builder setBoleto(PaymentIntentConfirmParams.PaymentMethodOptions.Boleto boleto) { this.boleto = boleto; return this; } /** * If this is a {@code boleto} PaymentMethod, this sub-hash contains details about the Boleto * payment method options. */ public Builder setBoleto(EmptyParam boleto) { this.boleto = boleto; return this; } /** Configuration for any card payments attempted on this PaymentIntent. */ public Builder setCard(PaymentIntentConfirmParams.PaymentMethodOptions.Card card) { this.card = card; return this; } /** Configuration for any card payments attempted on this PaymentIntent. */ public Builder setCard(EmptyParam card) { this.card = card; return this; } /** * If this is a {@code card_present} PaymentMethod, this sub-hash contains details about the * Card Present payment method options. */ public Builder setCardPresent( PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent cardPresent) { this.cardPresent = cardPresent; return this; } /** * If this is a {@code card_present} PaymentMethod, this sub-hash contains details about the * Card Present payment method options. */ public Builder setCardPresent(EmptyParam cardPresent) { this.cardPresent = cardPresent; return this; } /** * If this is a {@code cashapp} PaymentMethod, this sub-hash contains details about the Cash * App Pay payment method options. */ public Builder setCashapp(PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp cashapp) { this.cashapp = cashapp; return this; } /** * If this is a {@code cashapp} PaymentMethod, this sub-hash contains details about the Cash * App Pay payment method options. */ public Builder setCashapp(EmptyParam cashapp) { this.cashapp = cashapp; return this; } /** * If this is a {@code customer balance} PaymentMethod, this sub-hash contains details about * the customer balance payment method options. */ public Builder setCustomerBalance( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance customerBalance) { this.customerBalance = customerBalance; return this; } /** * If this is a {@code customer balance} PaymentMethod, this sub-hash contains details about * the customer balance payment method options. */ public Builder setCustomerBalance(EmptyParam customerBalance) { this.customerBalance = customerBalance; return this; } /** * If this is a {@code eps} PaymentMethod, this sub-hash contains details about the EPS * payment method options. */ public Builder setEps(PaymentIntentConfirmParams.PaymentMethodOptions.Eps eps) { this.eps = eps; return this; } /** * If this is a {@code eps} PaymentMethod, this sub-hash contains details about the EPS * payment method options. */ public Builder setEps(EmptyParam eps) { this.eps = eps; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.PaymentMethodOptions#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * If this is a {@code fpx} PaymentMethod, this sub-hash contains details about the FPX * payment method options. */ public Builder setFpx(PaymentIntentConfirmParams.PaymentMethodOptions.Fpx fpx) { this.fpx = fpx; return this; } /** * If this is a {@code fpx} PaymentMethod, this sub-hash contains details about the FPX * payment method options. */ public Builder setFpx(EmptyParam fpx) { this.fpx = fpx; return this; } /** * If this is a {@code giropay} PaymentMethod, this sub-hash contains details about the * Giropay payment method options. */ public Builder setGiropay(PaymentIntentConfirmParams.PaymentMethodOptions.Giropay giropay) { this.giropay = giropay; return this; } /** * If this is a {@code giropay} PaymentMethod, this sub-hash contains details about the * Giropay payment method options. */ public Builder setGiropay(EmptyParam giropay) { this.giropay = giropay; return this; } /** * If this is a {@code grabpay} PaymentMethod, this sub-hash contains details about the * Grabpay payment method options. */ public Builder setGrabpay(PaymentIntentConfirmParams.PaymentMethodOptions.Grabpay grabpay) { this.grabpay = grabpay; return this; } /** * If this is a {@code grabpay} PaymentMethod, this sub-hash contains details about the * Grabpay payment method options. */ public Builder setGrabpay(EmptyParam grabpay) { this.grabpay = grabpay; return this; } /** * If this is a {@code ideal} PaymentMethod, this sub-hash contains details about the Ideal * payment method options. */ public Builder setIdeal(PaymentIntentConfirmParams.PaymentMethodOptions.Ideal ideal) { this.ideal = ideal; return this; } /** * If this is a {@code ideal} PaymentMethod, this sub-hash contains details about the Ideal * payment method options. */ public Builder setIdeal(EmptyParam ideal) { this.ideal = ideal; return this; } /** * If this is a {@code interac_present} PaymentMethod, this sub-hash contains details about * the Card Present payment method options. */ public Builder setInteracPresent( PaymentIntentConfirmParams.PaymentMethodOptions.InteracPresent interacPresent) { this.interacPresent = interacPresent; return this; } /** * If this is a {@code interac_present} PaymentMethod, this sub-hash contains details about * the Card Present payment method options. */ public Builder setInteracPresent(EmptyParam interacPresent) { this.interacPresent = interacPresent; return this; } /** * If this is a {@code klarna} PaymentMethod, this sub-hash contains details about the Klarna * payment method options. */ public Builder setKlarna(PaymentIntentConfirmParams.PaymentMethodOptions.Klarna klarna) { this.klarna = klarna; return this; } /** * If this is a {@code klarna} PaymentMethod, this sub-hash contains details about the Klarna * payment method options. */ public Builder setKlarna(EmptyParam klarna) { this.klarna = klarna; return this; } /** * If this is a {@code konbini} PaymentMethod, this sub-hash contains details about the * Konbini payment method options. */ public Builder setKonbini(PaymentIntentConfirmParams.PaymentMethodOptions.Konbini konbini) { this.konbini = konbini; return this; } /** * If this is a {@code konbini} PaymentMethod, this sub-hash contains details about the * Konbini payment method options. */ public Builder setKonbini(EmptyParam konbini) { this.konbini = konbini; return this; } /** * If this is a {@code link} PaymentMethod, this sub-hash contains details about the Link * payment method options. */ public Builder setLink(PaymentIntentConfirmParams.PaymentMethodOptions.Link link) { this.link = link; return this; } /** * If this is a {@code link} PaymentMethod, this sub-hash contains details about the Link * payment method options. */ public Builder setLink(EmptyParam link) { this.link = link; return this; } /** * If this is a {@code mb_way} PaymentMethod, this sub-hash contains details about the MB WAY * payment method options. */ public Builder setMbWay(PaymentIntentConfirmParams.PaymentMethodOptions.MbWay mbWay) { this.mbWay = mbWay; return this; } /** * If this is a {@code mb_way} PaymentMethod, this sub-hash contains details about the MB WAY * payment method options. */ public Builder setMbWay(EmptyParam mbWay) { this.mbWay = mbWay; return this; } /** * If this is a {@code MobilePay} PaymentMethod, this sub-hash contains details about the * MobilePay payment method options. */ public Builder setMobilepay( PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay mobilepay) { this.mobilepay = mobilepay; return this; } /** * If this is a {@code MobilePay} PaymentMethod, this sub-hash contains details about the * MobilePay payment method options. */ public Builder setMobilepay(EmptyParam mobilepay) { this.mobilepay = mobilepay; return this; } /** * If this is a {@code multibanco} PaymentMethod, this sub-hash contains details about the * Multibanco payment method options. */ public Builder setMultibanco( PaymentIntentConfirmParams.PaymentMethodOptions.Multibanco multibanco) { this.multibanco = multibanco; return this; } /** * If this is a {@code multibanco} PaymentMethod, this sub-hash contains details about the * Multibanco payment method options. */ public Builder setMultibanco(EmptyParam multibanco) { this.multibanco = multibanco; return this; } /** * If this is a {@code oxxo} PaymentMethod, this sub-hash contains details about the OXXO * payment method options. */ public Builder setOxxo(PaymentIntentConfirmParams.PaymentMethodOptions.Oxxo oxxo) { this.oxxo = oxxo; return this; } /** * If this is a {@code oxxo} PaymentMethod, this sub-hash contains details about the OXXO * payment method options. */ public Builder setOxxo(EmptyParam oxxo) { this.oxxo = oxxo; return this; } /** * If this is a {@code p24} PaymentMethod, this sub-hash contains details about the Przelewy24 * payment method options. */ public Builder setP24(PaymentIntentConfirmParams.PaymentMethodOptions.P24 p24) { this.p24 = p24; return this; } /** * If this is a {@code p24} PaymentMethod, this sub-hash contains details about the Przelewy24 * payment method options. */ public Builder setP24(EmptyParam p24) { this.p24 = p24; return this; } /** * If this is a {@code paynow} PaymentMethod, this sub-hash contains details about the PayNow * payment method options. */ public Builder setPaynow(PaymentIntentConfirmParams.PaymentMethodOptions.Paynow paynow) { this.paynow = paynow; return this; } /** * If this is a {@code paynow} PaymentMethod, this sub-hash contains details about the PayNow * payment method options. */ public Builder setPaynow(EmptyParam paynow) { this.paynow = paynow; return this; } /** * If this is a {@code paypal} PaymentMethod, this sub-hash contains details about the PayPal * payment method options. */ public Builder setPaypal(PaymentIntentConfirmParams.PaymentMethodOptions.Paypal paypal) { this.paypal = paypal; return this; } /** * If this is a {@code paypal} PaymentMethod, this sub-hash contains details about the PayPal * payment method options. */ public Builder setPaypal(EmptyParam paypal) { this.paypal = paypal; return this; } /** * If this is a {@code payto} PaymentMethod, this sub-hash contains details about the PayTo * payment method options. */ public Builder setPayto(PaymentIntentConfirmParams.PaymentMethodOptions.Payto payto) { this.payto = payto; return this; } /** * If this is a {@code payto} PaymentMethod, this sub-hash contains details about the PayTo * payment method options. */ public Builder setPayto(EmptyParam payto) { this.payto = payto; return this; } /** * If this is a {@code pix} PaymentMethod, this sub-hash contains details about the Pix * payment method options. */ public Builder setPix(PaymentIntentConfirmParams.PaymentMethodOptions.Pix pix) { this.pix = pix; return this; } /** * If this is a {@code pix} PaymentMethod, this sub-hash contains details about the Pix * payment method options. */ public Builder setPix(EmptyParam pix) { this.pix = pix; return this; } /** * If this is a {@code promptpay} PaymentMethod, this sub-hash contains details about the * PromptPay payment method options. */ public Builder setPromptpay( PaymentIntentConfirmParams.PaymentMethodOptions.Promptpay promptpay) { this.promptpay = promptpay; return this; } /** * If this is a {@code promptpay} PaymentMethod, this sub-hash contains details about the * PromptPay payment method options. */ public Builder setPromptpay(EmptyParam promptpay) { this.promptpay = promptpay; return this; } /** * If this is a {@code rechnung} PaymentMethod, this sub-hash contains details about the * Rechnung payment method options. */ public Builder setRechnung( PaymentIntentConfirmParams.PaymentMethodOptions.Rechnung rechnung) { this.rechnung = rechnung; return this; } /** * If this is a {@code rechnung} PaymentMethod, this sub-hash contains details about the * Rechnung payment method options. */ public Builder setRechnung(EmptyParam rechnung) { this.rechnung = rechnung; return this; } /** * If this is a {@code revolut_pay} PaymentMethod, this sub-hash contains details about the * Revolut Pay payment method options. */ public Builder setRevolutPay( PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay revolutPay) { this.revolutPay = revolutPay; return this; } /** * If this is a {@code revolut_pay} PaymentMethod, this sub-hash contains details about the * Revolut Pay payment method options. */ public Builder setRevolutPay(EmptyParam revolutPay) { this.revolutPay = revolutPay; return this; } /** * If this is a {@code sepa_debit} PaymentIntent, this sub-hash contains details about the * SEPA Debit payment method options. */ public Builder setSepaDebit( PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit sepaDebit) { this.sepaDebit = sepaDebit; return this; } /** * If this is a {@code sepa_debit} PaymentIntent, this sub-hash contains details about the * SEPA Debit payment method options. */ public Builder setSepaDebit(EmptyParam sepaDebit) { this.sepaDebit = sepaDebit; return this; } /** * If this is a {@code sofort} PaymentMethod, this sub-hash contains details about the SOFORT * payment method options. */ public Builder setSofort(PaymentIntentConfirmParams.PaymentMethodOptions.Sofort sofort) { this.sofort = sofort; return this; } /** * If this is a {@code sofort} PaymentMethod, this sub-hash contains details about the SOFORT * payment method options. */ public Builder setSofort(EmptyParam sofort) { this.sofort = sofort; return this; } /** * If this is a {@code Swish} PaymentMethod, this sub-hash contains details about the Swish * payment method options. */ public Builder setSwish(PaymentIntentConfirmParams.PaymentMethodOptions.Swish swish) { this.swish = swish; return this; } /** * If this is a {@code Swish} PaymentMethod, this sub-hash contains details about the Swish * payment method options. */ public Builder setSwish(EmptyParam swish) { this.swish = swish; return this; } /** * If this is a {@code twint} PaymentMethod, this sub-hash contains details about the TWINT * payment method options. */ public Builder setTwint(PaymentIntentConfirmParams.PaymentMethodOptions.Twint twint) { this.twint = twint; return this; } /** * If this is a {@code twint} PaymentMethod, this sub-hash contains details about the TWINT * payment method options. */ public Builder setTwint(EmptyParam twint) { this.twint = twint; return this; } /** * If this is a {@code us_bank_account} PaymentMethod, this sub-hash contains details about * the US bank account payment method options. */ public Builder setUsBankAccount( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount usBankAccount) { this.usBankAccount = usBankAccount; return this; } /** * If this is a {@code us_bank_account} PaymentMethod, this sub-hash contains details about * the US bank account payment method options. */ public Builder setUsBankAccount(EmptyParam usBankAccount) { this.usBankAccount = usBankAccount; return this; } /** * If this is a {@code wechat_pay} PaymentMethod, this sub-hash contains details about the * WeChat Pay payment method options. */ public Builder setWechatPay( PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay wechatPay) { this.wechatPay = wechatPay; return this; } /** * If this is a {@code wechat_pay} PaymentMethod, this sub-hash contains details about the * WeChat Pay payment method options. */ public Builder setWechatPay(EmptyParam wechatPay) { this.wechatPay = wechatPay; return this; } /** * If this is a {@code zip} PaymentMethod, this sub-hash contains details about the Zip * payment method options. */ public Builder setZip(PaymentIntentConfirmParams.PaymentMethodOptions.Zip zip) { this.zip = zip; return this; } /** * If this is a {@code zip} PaymentMethod, this sub-hash contains details about the Zip * payment method options. */ public Builder setZip(EmptyParam zip) { this.zip = zip; return this; } } @Getter public static class AcssDebit { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Additional fields for Mandate creation. */ @SerializedName("mandate_options") MandateOptions mandateOptions; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; /** Bank account verification method. */ @SerializedName("verification_method") VerificationMethod verificationMethod; private AcssDebit( Map extraParams, MandateOptions mandateOptions, ApiRequestParams.EnumParam setupFutureUsage, VerificationMethod verificationMethod) { this.extraParams = extraParams; this.mandateOptions = mandateOptions; this.setupFutureUsage = setupFutureUsage; this.verificationMethod = verificationMethod; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private MandateOptions mandateOptions; private ApiRequestParams.EnumParam setupFutureUsage; private VerificationMethod verificationMethod; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit( this.extraParams, this.mandateOptions, this.setupFutureUsage, this.verificationMethod); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Additional fields for Mandate creation. */ public Builder setMandateOptions( PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions mandateOptions) { this.mandateOptions = mandateOptions; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** Bank account verification method. */ public Builder setVerificationMethod( PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.VerificationMethod verificationMethod) { this.verificationMethod = verificationMethod; return this; } } @Getter public static class MandateOptions { /** * A URL for custom mandate text to render during confirmation step. The URL will be * rendered with additional GET parameters {@code payment_intent} and {@code * payment_intent_client_secret} when confirming a Payment Intent, or {@code setup_intent} * and {@code setup_intent_client_secret} when confirming a Setup Intent. */ @SerializedName("custom_mandate_url") Object customMandateUrl; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Description of the mandate interval. Only required if 'payment_schedule' parameter is * 'interval' or 'combined'. */ @SerializedName("interval_description") String intervalDescription; /** Payment schedule for the mandate. */ @SerializedName("payment_schedule") PaymentSchedule paymentSchedule; /** Transaction type of the mandate. */ @SerializedName("transaction_type") TransactionType transactionType; private MandateOptions( Object customMandateUrl, Map extraParams, String intervalDescription, PaymentSchedule paymentSchedule, TransactionType transactionType) { this.customMandateUrl = customMandateUrl; this.extraParams = extraParams; this.intervalDescription = intervalDescription; this.paymentSchedule = paymentSchedule; this.transactionType = transactionType; } public static Builder builder() { return new Builder(); } public static class Builder { private Object customMandateUrl; private Map extraParams; private String intervalDescription; private PaymentSchedule paymentSchedule; private TransactionType transactionType; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions( this.customMandateUrl, this.extraParams, this.intervalDescription, this.paymentSchedule, this.transactionType); } /** * A URL for custom mandate text to render during confirmation step. The URL will be * rendered with additional GET parameters {@code payment_intent} and {@code * payment_intent_client_secret} when confirming a Payment Intent, or {@code setup_intent} * and {@code setup_intent_client_secret} when confirming a Setup Intent. */ public Builder setCustomMandateUrl(String customMandateUrl) { this.customMandateUrl = customMandateUrl; return this; } /** * A URL for custom mandate text to render during confirmation step. The URL will be * rendered with additional GET parameters {@code payment_intent} and {@code * payment_intent_client_secret} when confirming a Payment Intent, or {@code setup_intent} * and {@code setup_intent_client_secret} when confirming a Setup Intent. */ public Builder setCustomMandateUrl(EmptyParam customMandateUrl) { this.customMandateUrl = customMandateUrl; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Description of the mandate interval. Only required if 'payment_schedule' parameter is * 'interval' or 'combined'. */ public Builder setIntervalDescription(String intervalDescription) { this.intervalDescription = intervalDescription; return this; } /** Payment schedule for the mandate. */ public Builder setPaymentSchedule( PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions .PaymentSchedule paymentSchedule) { this.paymentSchedule = paymentSchedule; return this; } /** Transaction type of the mandate. */ public Builder setTransactionType( PaymentIntentConfirmParams.PaymentMethodOptions.AcssDebit.MandateOptions .TransactionType transactionType) { this.transactionType = transactionType; return this; } } public enum PaymentSchedule implements ApiRequestParams.EnumParam { @SerializedName("combined") COMBINED("combined"), @SerializedName("interval") INTERVAL("interval"), @SerializedName("sporadic") SPORADIC("sporadic"); @Getter(onMethod_ = {@Override}) private final String value; PaymentSchedule(String value) { this.value = value; } } public enum TransactionType implements ApiRequestParams.EnumParam { @SerializedName("business") BUSINESS("business"), @SerializedName("personal") PERSONAL("personal"); @Getter(onMethod_ = {@Override}) private final String value; TransactionType(String value) { this.value = value; } } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } public enum VerificationMethod implements ApiRequestParams.EnumParam { @SerializedName("automatic") AUTOMATIC("automatic"), @SerializedName("instant") INSTANT("instant"), @SerializedName("microdeposits") MICRODEPOSITS("microdeposits"); @Getter(onMethod_ = {@Override}) private final String value; VerificationMethod(String value) { this.value = value; } } } @Getter public static class Affirm { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Preferred language of the Affirm authorization page that the customer is redirected to. */ @SerializedName("preferred_locale") String preferredLocale; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Affirm( ApiRequestParams.EnumParam captureMethod, Map extraParams, String preferredLocale, SetupFutureUsage setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.preferredLocale = preferredLocale; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private String preferredLocale; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Affirm build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Affirm( this.captureMethod, this.extraParams, this.preferredLocale, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Affirm.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Affirm#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Affirm#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Preferred language of the Affirm authorization page that the customer is redirected to. */ public Builder setPreferredLocale(String preferredLocale) { this.preferredLocale = preferredLocale; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Affirm.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class AfterpayClearpay { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * An internal identifier or reference that this payment corresponds to. You must limit the * identifier to 128 characters, and it can only contain letters, numbers, underscores, * backslashes, and dashes. This field differs from the statement descriptor and item name. */ @SerializedName("reference") String reference; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private AfterpayClearpay( ApiRequestParams.EnumParam captureMethod, Map extraParams, String reference, SetupFutureUsage setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.reference = reference; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private String reference; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay( this.captureMethod, this.extraParams, this.reference, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * An internal identifier or reference that this payment corresponds to. You must limit the * identifier to 128 characters, and it can only contain letters, numbers, underscores, * backslashes, and dashes. This field differs from the statement descriptor and item name. */ public Builder setReference(String reference) { this.reference = reference; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.AfterpayClearpay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Alipay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Alipay(Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Alipay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Alipay( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Alipay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Alipay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Alipay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class AmazonPay { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private AmazonPay( ApiRequestParams.EnumParam captureMethod, Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay( this.captureMethod, this.extraParams, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.AmazonPay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class AuBecsDebit { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private AuBecsDebit( Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.AuBecsDebit build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.AuBecsDebit( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.AuBecsDebit#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.AuBecsDebit#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.AuBecsDebit.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class BacsDebit { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Additional fields for Mandate creation. */ @SerializedName("mandate_options") MandateOptions mandateOptions; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private BacsDebit( Map extraParams, MandateOptions mandateOptions, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.mandateOptions = mandateOptions; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private MandateOptions mandateOptions; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit( this.extraParams, this.mandateOptions, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Additional fields for Mandate creation. */ public Builder setMandateOptions( PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit.MandateOptions mandateOptions) { this.mandateOptions = mandateOptions; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } @Getter public static class MandateOptions { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private MandateOptions(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit.MandateOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit.MandateOptions( this.extraParams); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit.MandateOptions#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.BacsDebit.MandateOptions#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Bancontact { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Preferred language of the Bancontact authorization page that the customer is redirected to. */ @SerializedName("preferred_language") PreferredLanguage preferredLanguage; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Bancontact( Map extraParams, PreferredLanguage preferredLanguage, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.preferredLanguage = preferredLanguage; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private PreferredLanguage preferredLanguage; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact( this.extraParams, this.preferredLanguage, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Preferred language of the Bancontact authorization page that the customer is redirected * to. */ public Builder setPreferredLanguage( PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact.PreferredLanguage preferredLanguage) { this.preferredLanguage = preferredLanguage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Bancontact.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum PreferredLanguage implements ApiRequestParams.EnumParam { @SerializedName("de") DE("de"), @SerializedName("en") EN("en"), @SerializedName("fr") FR("fr"), @SerializedName("nl") NL("nl"); @Getter(onMethod_ = {@Override}) private final String value; PreferredLanguage(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Blik { /** * The 6-digit BLIK code that a customer has generated using their banking application. Can * only be set on confirmation. */ @SerializedName("code") String code; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Blik( String code, Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.code = code; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private String code; private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Blik build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Blik( this.code, this.extraParams, this.setupFutureUsage); } /** * The 6-digit BLIK code that a customer has generated using their banking application. Can * only be set on confirmation. */ public Builder setCode(String code) { this.code = code; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Blik#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Blik#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Blik.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Boleto { /** * The number of calendar days before a Boleto voucher expires. For example, if you create a * Boleto voucher on Monday and you set expires_after_days to 2, the Boleto invoice will * expire on Wednesday at 23:59 America/Sao_Paulo time. */ @SerializedName("expires_after_days") Long expiresAfterDays; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Boleto( Long expiresAfterDays, Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.expiresAfterDays = expiresAfterDays; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Long expiresAfterDays; private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Boleto build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Boleto( this.expiresAfterDays, this.extraParams, this.setupFutureUsage); } /** * The number of calendar days before a Boleto voucher expires. For example, if you create a * Boleto voucher on Monday and you set expires_after_days to 2, the Boleto invoice will * expire on Wednesday at 23:59 America/Sao_Paulo time. */ public Builder setExpiresAfterDays(Long expiresAfterDays) { this.expiresAfterDays = expiresAfterDays; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Boleto#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Boleto#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Boleto.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Card { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * A single-use {@code cvc_update} Token that represents a card CVC value. When provided, the * CVC value will be verified during the card payment attempt. This parameter can only be * provided during confirmation. */ @SerializedName("cvc_token") String cvcToken; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Installment configuration for payments attempted on this PaymentIntent (Mexico Only). * *

For more information, see the installments integration guide. */ @SerializedName("installments") Installments installments; /** Configuration options for setting up an eMandate for cards issued in India. */ @SerializedName("mandate_options") MandateOptions mandateOptions; /** * When specified, this parameter indicates that a transaction will be marked as MOTO (Mail * Order Telephone Order) and thus out of scope for SCA. This parameter can only be provided * during confirmation. */ @SerializedName("moto") Boolean moto; /** * Selected network to process this PaymentIntent on. Depends on the available networks of the * card attached to the PaymentIntent. Can be only set confirm-time. */ @SerializedName("network") Network network; /** * Request ability to decrement the * authorization for this PaymentIntent. */ @SerializedName("request_decremental_authorization") RequestDecrementalAuthorization requestDecrementalAuthorization; /** * Request ability to capture beyond the standard * authorization validity window for this PaymentIntent. */ @SerializedName("request_extended_authorization") RequestExtendedAuthorization requestExtendedAuthorization; /** * Request ability to increment the * authorization for this PaymentIntent. */ @SerializedName("request_incremental_authorization") RequestIncrementalAuthorization requestIncrementalAuthorization; /** * Request ability to make multiple * captures for this PaymentIntent. */ @SerializedName("request_multicapture") RequestMulticapture requestMulticapture; /** * Request ability to overcapture * for this PaymentIntent. */ @SerializedName("request_overcapture") RequestOvercapture requestOvercapture; /** * We strongly recommend that you rely on our SCA Engine to automatically prompt your * customers for authentication based on risk level and other requirements. * However, if you wish to request 3D Secure based on logic from your own fraud engine, * provide this option. If not provided, this value defaults to {@code automatic}. Read our * guide on manually * requesting 3D Secure for more information on how this configuration interacts with * Radar and our SCA Engine. */ @SerializedName("request_three_d_secure") RequestThreeDSecure requestThreeDSecure; /** * When enabled, using a card that is attached to a customer will require the CVC to be * provided again (i.e. using the cvc_token parameter). */ @SerializedName("require_cvc_recollection") Boolean requireCvcRecollection; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; /** * Provides information about a card payment that customers see on their statements. * Concatenated with the Kana prefix (shortened Kana descriptor) or Kana statement descriptor * that’s set on the account to form the complete statement descriptor. Maximum 22 characters. * On card statements, the concatenation of both prefix and suffix (including * separators) will appear truncated to 22 characters. */ @SerializedName("statement_descriptor_suffix_kana") Object statementDescriptorSuffixKana; /** * Provides information about a card payment that customers see on their statements. * Concatenated with the Kanji prefix (shortened Kanji descriptor) or Kanji statement * descriptor that’s set on the account to form the complete statement descriptor. Maximum 17 * characters. On card statements, the concatenation of both prefix and suffix * (including separators) will appear truncated to 17 characters. */ @SerializedName("statement_descriptor_suffix_kanji") Object statementDescriptorSuffixKanji; /** * Statement details for this payment intent. You can use this to override the merchant * details shown on your customers' statements. */ @SerializedName("statement_details") Object statementDetails; /** * If 3D Secure authentication was performed with a third-party provider, the authentication * details to use for this payment. */ @SerializedName("three_d_secure") ThreeDSecure threeDSecure; private Card( ApiRequestParams.EnumParam captureMethod, String cvcToken, Map extraParams, Installments installments, MandateOptions mandateOptions, Boolean moto, Network network, RequestDecrementalAuthorization requestDecrementalAuthorization, RequestExtendedAuthorization requestExtendedAuthorization, RequestIncrementalAuthorization requestIncrementalAuthorization, RequestMulticapture requestMulticapture, RequestOvercapture requestOvercapture, RequestThreeDSecure requestThreeDSecure, Boolean requireCvcRecollection, ApiRequestParams.EnumParam setupFutureUsage, Object statementDescriptorSuffixKana, Object statementDescriptorSuffixKanji, Object statementDetails, ThreeDSecure threeDSecure) { this.captureMethod = captureMethod; this.cvcToken = cvcToken; this.extraParams = extraParams; this.installments = installments; this.mandateOptions = mandateOptions; this.moto = moto; this.network = network; this.requestDecrementalAuthorization = requestDecrementalAuthorization; this.requestExtendedAuthorization = requestExtendedAuthorization; this.requestIncrementalAuthorization = requestIncrementalAuthorization; this.requestMulticapture = requestMulticapture; this.requestOvercapture = requestOvercapture; this.requestThreeDSecure = requestThreeDSecure; this.requireCvcRecollection = requireCvcRecollection; this.setupFutureUsage = setupFutureUsage; this.statementDescriptorSuffixKana = statementDescriptorSuffixKana; this.statementDescriptorSuffixKanji = statementDescriptorSuffixKanji; this.statementDetails = statementDetails; this.threeDSecure = threeDSecure; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private String cvcToken; private Map extraParams; private Installments installments; private MandateOptions mandateOptions; private Boolean moto; private Network network; private RequestDecrementalAuthorization requestDecrementalAuthorization; private RequestExtendedAuthorization requestExtendedAuthorization; private RequestIncrementalAuthorization requestIncrementalAuthorization; private RequestMulticapture requestMulticapture; private RequestOvercapture requestOvercapture; private RequestThreeDSecure requestThreeDSecure; private Boolean requireCvcRecollection; private ApiRequestParams.EnumParam setupFutureUsage; private Object statementDescriptorSuffixKana; private Object statementDescriptorSuffixKanji; private Object statementDetails; private ThreeDSecure threeDSecure; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card( this.captureMethod, this.cvcToken, this.extraParams, this.installments, this.mandateOptions, this.moto, this.network, this.requestDecrementalAuthorization, this.requestExtendedAuthorization, this.requestIncrementalAuthorization, this.requestMulticapture, this.requestOvercapture, this.requestThreeDSecure, this.requireCvcRecollection, this.setupFutureUsage, this.statementDescriptorSuffixKana, this.statementDescriptorSuffixKanji, this.statementDetails, this.threeDSecure); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Card.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * A single-use {@code cvc_update} Token that represents a card CVC value. When provided, * the CVC value will be verified during the card payment attempt. This parameter can only * be provided during confirmation. */ public Builder setCvcToken(String cvcToken) { this.cvcToken = cvcToken; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Card#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Card#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Installment configuration for payments attempted on this PaymentIntent (Mexico Only). * *

For more information, see the installments integration guide. */ public Builder setInstallments( PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments installments) { this.installments = installments; return this; } /** Configuration options for setting up an eMandate for cards issued in India. */ public Builder setMandateOptions( PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions mandateOptions) { this.mandateOptions = mandateOptions; return this; } /** * When specified, this parameter indicates that a transaction will be marked as MOTO (Mail * Order Telephone Order) and thus out of scope for SCA. This parameter can only be provided * during confirmation. */ public Builder setMoto(Boolean moto) { this.moto = moto; return this; } /** * Selected network to process this PaymentIntent on. Depends on the available networks of * the card attached to the PaymentIntent. Can be only set confirm-time. */ public Builder setNetwork( PaymentIntentConfirmParams.PaymentMethodOptions.Card.Network network) { this.network = network; return this; } /** * Request ability to decrement the * authorization for this PaymentIntent. */ public Builder setRequestDecrementalAuthorization( PaymentIntentConfirmParams.PaymentMethodOptions.Card.RequestDecrementalAuthorization requestDecrementalAuthorization) { this.requestDecrementalAuthorization = requestDecrementalAuthorization; return this; } /** * Request ability to capture beyond the * standard authorization validity window for this PaymentIntent. */ public Builder setRequestExtendedAuthorization( PaymentIntentConfirmParams.PaymentMethodOptions.Card.RequestExtendedAuthorization requestExtendedAuthorization) { this.requestExtendedAuthorization = requestExtendedAuthorization; return this; } /** * Request ability to increment the * authorization for this PaymentIntent. */ public Builder setRequestIncrementalAuthorization( PaymentIntentConfirmParams.PaymentMethodOptions.Card.RequestIncrementalAuthorization requestIncrementalAuthorization) { this.requestIncrementalAuthorization = requestIncrementalAuthorization; return this; } /** * Request ability to make multiple * captures for this PaymentIntent. */ public Builder setRequestMulticapture( PaymentIntentConfirmParams.PaymentMethodOptions.Card.RequestMulticapture requestMulticapture) { this.requestMulticapture = requestMulticapture; return this; } /** * Request ability to overcapture * for this PaymentIntent. */ public Builder setRequestOvercapture( PaymentIntentConfirmParams.PaymentMethodOptions.Card.RequestOvercapture requestOvercapture) { this.requestOvercapture = requestOvercapture; return this; } /** * We strongly recommend that you rely on our SCA Engine to automatically prompt your * customers for authentication based on risk level and other requirements. * However, if you wish to request 3D Secure based on logic from your own fraud engine, * provide this option. If not provided, this value defaults to {@code automatic}. Read our * guide on manually * requesting 3D Secure for more information on how this configuration interacts with * Radar and our SCA Engine. */ public Builder setRequestThreeDSecure( PaymentIntentConfirmParams.PaymentMethodOptions.Card.RequestThreeDSecure requestThreeDSecure) { this.requestThreeDSecure = requestThreeDSecure; return this; } /** * When enabled, using a card that is attached to a customer will require the CVC to be * provided again (i.e. using the cvc_token parameter). */ public Builder setRequireCvcRecollection(Boolean requireCvcRecollection) { this.requireCvcRecollection = requireCvcRecollection; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Card.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * Provides information about a card payment that customers see on their statements. * Concatenated with the Kana prefix (shortened Kana descriptor) or Kana statement * descriptor that’s set on the account to form the complete statement descriptor. Maximum * 22 characters. On card statements, the concatenation of both prefix and suffix * (including separators) will appear truncated to 22 characters. */ public Builder setStatementDescriptorSuffixKana(String statementDescriptorSuffixKana) { this.statementDescriptorSuffixKana = statementDescriptorSuffixKana; return this; } /** * Provides information about a card payment that customers see on their statements. * Concatenated with the Kana prefix (shortened Kana descriptor) or Kana statement * descriptor that’s set on the account to form the complete statement descriptor. Maximum * 22 characters. On card statements, the concatenation of both prefix and suffix * (including separators) will appear truncated to 22 characters. */ public Builder setStatementDescriptorSuffixKana(EmptyParam statementDescriptorSuffixKana) { this.statementDescriptorSuffixKana = statementDescriptorSuffixKana; return this; } /** * Provides information about a card payment that customers see on their statements. * Concatenated with the Kanji prefix (shortened Kanji descriptor) or Kanji statement * descriptor that’s set on the account to form the complete statement descriptor. Maximum * 17 characters. On card statements, the concatenation of both prefix and suffix * (including separators) will appear truncated to 17 characters. */ public Builder setStatementDescriptorSuffixKanji(String statementDescriptorSuffixKanji) { this.statementDescriptorSuffixKanji = statementDescriptorSuffixKanji; return this; } /** * Provides information about a card payment that customers see on their statements. * Concatenated with the Kanji prefix (shortened Kanji descriptor) or Kanji statement * descriptor that’s set on the account to form the complete statement descriptor. Maximum * 17 characters. On card statements, the concatenation of both prefix and suffix * (including separators) will appear truncated to 17 characters. */ public Builder setStatementDescriptorSuffixKanji( EmptyParam statementDescriptorSuffixKanji) { this.statementDescriptorSuffixKanji = statementDescriptorSuffixKanji; return this; } /** * Statement details for this payment intent. You can use this to override the merchant * details shown on your customers' statements. */ public Builder setStatementDetails( PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails statementDetails) { this.statementDetails = statementDetails; return this; } /** * Statement details for this payment intent. You can use this to override the merchant * details shown on your customers' statements. */ public Builder setStatementDetails(EmptyParam statementDetails) { this.statementDetails = statementDetails; return this; } /** * If 3D Secure authentication was performed with a third-party provider, the authentication * details to use for this payment. */ public Builder setThreeDSecure( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure threeDSecure) { this.threeDSecure = threeDSecure; return this; } } @Getter public static class Installments { /** * Setting to true enables installments for this PaymentIntent. This will cause the response * to contain a list of available installment plans. Setting to false will prevent any * selected plan from applying to a charge. */ @SerializedName("enabled") Boolean enabled; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * The selected installment plan to use for this payment attempt. This parameter can only be * provided during confirmation. */ @SerializedName("plan") Object plan; private Installments(Boolean enabled, Map extraParams, Object plan) { this.enabled = enabled; this.extraParams = extraParams; this.plan = plan; } public static Builder builder() { return new Builder(); } public static class Builder { private Boolean enabled; private Map extraParams; private Object plan; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments( this.enabled, this.extraParams, this.plan); } /** * Setting to true enables installments for this PaymentIntent. This will cause the * response to contain a list of available installment plans. Setting to false will * prevent any selected plan from applying to a charge. */ public Builder setEnabled(Boolean enabled) { this.enabled = enabled; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * The selected installment plan to use for this payment attempt. This parameter can only * be provided during confirmation. */ public Builder setPlan( PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan plan) { this.plan = plan; return this; } /** * The selected installment plan to use for this payment attempt. This parameter can only * be provided during confirmation. */ public Builder setPlan(EmptyParam plan) { this.plan = plan; return this; } } @Getter public static class Plan { /** * For {@code fixed_count} installment plans, this is required. It represents the number * of installment payments your customer will make to their credit card. */ @SerializedName("count") Long count; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * For {@code fixed_count} installment plans, this is required. It represents the interval * between installment payments your customer will make to their credit card. One of * {@code month}. */ @SerializedName("interval") Interval interval; /** Required. Type of installment plan, one of {@code fixed_count}. */ @SerializedName("type") Type type; private Plan(Long count, Map extraParams, Interval interval, Type type) { this.count = count; this.extraParams = extraParams; this.interval = interval; this.type = type; } public static Builder builder() { return new Builder(); } public static class Builder { private Long count; private Map extraParams; private Interval interval; private Type type; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan( this.count, this.extraParams, this.interval, this.type); } /** * For {@code fixed_count} installment plans, this is required. It represents the number * of installment payments your customer will make to their credit card. */ public Builder setCount(Long count) { this.count = count; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * For {@code fixed_count} installment plans, this is required. It represents the * interval between installment payments your customer will make to their credit card. * One of {@code month}. */ public Builder setInterval( PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan.Interval interval) { this.interval = interval; return this; } /** Required. Type of installment plan, one of {@code fixed_count}. */ public Builder setType( PaymentIntentConfirmParams.PaymentMethodOptions.Card.Installments.Plan.Type type) { this.type = type; return this; } } public enum Interval implements ApiRequestParams.EnumParam { @SerializedName("month") MONTH("month"); @Getter(onMethod_ = {@Override}) private final String value; Interval(String value) { this.value = value; } } public enum Type implements ApiRequestParams.EnumParam { @SerializedName("fixed_count") FIXED_COUNT("fixed_count"); @Getter(onMethod_ = {@Override}) private final String value; Type(String value) { this.value = value; } } } } @Getter public static class MandateOptions { /** Required. Amount to be charged for future payments. */ @SerializedName("amount") Long amount; /** * Required. One of {@code fixed} or {@code maximum}. If {@code fixed}, the * {@code amount} param refers to the exact amount to be charged in future payments. If * {@code maximum}, the amount charged can be up to the value passed for the {@code amount} * param. */ @SerializedName("amount_type") AmountType amountType; /** * A description of the mandate or subscription that is meant to be displayed to the * customer. */ @SerializedName("description") String description; /** * End date of the mandate or subscription. If not provided, the mandate will be active * until canceled. If provided, end date should be after start date. */ @SerializedName("end_date") Long endDate; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. Specifies payment frequency. One of {@code day}, {@code week}, * {@code month}, {@code year}, or {@code sporadic}. */ @SerializedName("interval") Interval interval; /** * The number of intervals between payments. For example, {@code interval=month} and {@code * interval_count=3} indicates one payment every three months. Maximum of one year interval * allowed (1 year, 12 months, or 52 weeks). This parameter is optional when {@code * interval=sporadic}. */ @SerializedName("interval_count") Long intervalCount; /** Required. Unique identifier for the mandate or subscription. */ @SerializedName("reference") String reference; /** * Required. Start date of the mandate or subscription. Start date should * not be lesser than yesterday. */ @SerializedName("start_date") Long startDate; /** Specifies the type of mandates supported. Possible values are {@code india}. */ @SerializedName("supported_types") List supportedTypes; private MandateOptions( Long amount, AmountType amountType, String description, Long endDate, Map extraParams, Interval interval, Long intervalCount, String reference, Long startDate, List supportedTypes) { this.amount = amount; this.amountType = amountType; this.description = description; this.endDate = endDate; this.extraParams = extraParams; this.interval = interval; this.intervalCount = intervalCount; this.reference = reference; this.startDate = startDate; this.supportedTypes = supportedTypes; } public static Builder builder() { return new Builder(); } public static class Builder { private Long amount; private AmountType amountType; private String description; private Long endDate; private Map extraParams; private Interval interval; private Long intervalCount; private String reference; private Long startDate; private List< PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions.SupportedType> supportedTypes; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions( this.amount, this.amountType, this.description, this.endDate, this.extraParams, this.interval, this.intervalCount, this.reference, this.startDate, this.supportedTypes); } /** Required. Amount to be charged for future payments. */ public Builder setAmount(Long amount) { this.amount = amount; return this; } /** * Required. One of {@code fixed} or {@code maximum}. If {@code fixed}, * the {@code amount} param refers to the exact amount to be charged in future payments. * If {@code maximum}, the amount charged can be up to the value passed for the {@code * amount} param. */ public Builder setAmountType( PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions.AmountType amountType) { this.amountType = amountType; return this; } /** * A description of the mandate or subscription that is meant to be displayed to the * customer. */ public Builder setDescription(String description) { this.description = description; return this; } /** * End date of the mandate or subscription. If not provided, the mandate will be active * until canceled. If provided, end date should be after start date. */ public Builder setEndDate(Long endDate) { this.endDate = endDate; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Specifies payment frequency. One of {@code day}, {@code * week}, {@code month}, {@code year}, or {@code sporadic}. */ public Builder setInterval( PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions.Interval interval) { this.interval = interval; return this; } /** * The number of intervals between payments. For example, {@code interval=month} and * {@code interval_count=3} indicates one payment every three months. Maximum of one year * interval allowed (1 year, 12 months, or 52 weeks). This parameter is optional when * {@code interval=sporadic}. */ public Builder setIntervalCount(Long intervalCount) { this.intervalCount = intervalCount; return this; } /** Required. Unique identifier for the mandate or subscription. */ public Builder setReference(String reference) { this.reference = reference; return this; } /** * Required. Start date of the mandate or subscription. Start date should * not be lesser than yesterday. */ public Builder setStartDate(Long startDate) { this.startDate = startDate; return this; } /** * Add an element to `supportedTypes` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original list. * See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions#supportedTypes} for * the field documentation. */ public Builder addSupportedType( PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions.SupportedType element) { if (this.supportedTypes == null) { this.supportedTypes = new ArrayList<>(); } this.supportedTypes.add(element); return this; } /** * Add all elements to `supportedTypes` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original list. * See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions#supportedTypes} for * the field documentation. */ public Builder addAllSupportedType( List< PaymentIntentConfirmParams.PaymentMethodOptions.Card.MandateOptions .SupportedType> elements) { if (this.supportedTypes == null) { this.supportedTypes = new ArrayList<>(); } this.supportedTypes.addAll(elements); return this; } } public enum AmountType implements ApiRequestParams.EnumParam { @SerializedName("fixed") FIXED("fixed"), @SerializedName("maximum") MAXIMUM("maximum"); @Getter(onMethod_ = {@Override}) private final String value; AmountType(String value) { this.value = value; } } public enum Interval implements ApiRequestParams.EnumParam { @SerializedName("day") DAY("day"), @SerializedName("month") MONTH("month"), @SerializedName("sporadic") SPORADIC("sporadic"), @SerializedName("week") WEEK("week"), @SerializedName("year") YEAR("year"); @Getter(onMethod_ = {@Override}) private final String value; Interval(String value) { this.value = value; } } public enum SupportedType implements ApiRequestParams.EnumParam { @SerializedName("india") INDIA("india"); @Getter(onMethod_ = {@Override}) private final String value; SupportedType(String value) { this.value = value; } } } @Getter public static class StatementDetails { /** Please pass in an address that is within your Stripe user account country. */ @SerializedName("address") Address address; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Phone number (e.g., a toll-free number that customers can call). */ @SerializedName("phone") String phone; private StatementDetails(Address address, Map extraParams, String phone) { this.address = address; this.extraParams = extraParams; this.phone = phone; } public static Builder builder() { return new Builder(); } public static class Builder { private Address address; private Map extraParams; private String phone; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails( this.address, this.extraParams, this.phone); } /** Please pass in an address that is within your Stripe user account country. */ public Builder setAddress( PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails.Address address) { this.address = address; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Phone number (e.g., a toll-free number that customers can call). */ public Builder setPhone(String phone) { this.phone = phone; return this; } } @Getter public static class Address { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private Address( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails.Address build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails .Address( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails.Address#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.StatementDetails.Address#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } } @Getter public static class ThreeDSecure { /** The {@code transStatus} returned from the card Issuer’s ACS in the ARes. */ @SerializedName("ares_trans_status") AresTransStatus aresTransStatus; /** * Required. The cryptogram, also known as the "authentication * value" (AAV, CAVV or AEVV). This value is 20 bytes, base64-encoded into a * 28-character string. (Most 3D Secure providers will return the base64-encoded version, * which is what you should specify here.) */ @SerializedName("cryptogram") String cryptogram; /** * The Electronic Commerce Indicator (ECI) is returned by your 3D Secure provider and * indicates what degree of authentication was performed. */ @SerializedName("electronic_commerce_indicator") ElectronicCommerceIndicator electronicCommerceIndicator; /** The exemption requested via 3DS and accepted by the issuer at authentication time. */ @SerializedName("exemption_indicator") ExemptionIndicator exemptionIndicator; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Network specific 3DS fields. Network specific arguments require an explicit card brand * choice. The parameter `payment_method_options.card.network`` must be populated * accordingly */ @SerializedName("network_options") NetworkOptions networkOptions; /** * The challenge indicator ({@code threeDSRequestorChallengeInd}) which was requested in the * AReq sent to the card Issuer's ACS. A string containing 2 digits from 01-99. */ @SerializedName("requestor_challenge_indicator") String requestorChallengeIndicator; /** * Required. For 3D Secure 1, the XID. For 3D Secure 2, the Directory * Server Transaction ID (dsTransID). */ @SerializedName("transaction_id") String transactionId; /** Required. The version of 3D Secure that was performed. */ @SerializedName("version") Version version; private ThreeDSecure( AresTransStatus aresTransStatus, String cryptogram, ElectronicCommerceIndicator electronicCommerceIndicator, ExemptionIndicator exemptionIndicator, Map extraParams, NetworkOptions networkOptions, String requestorChallengeIndicator, String transactionId, Version version) { this.aresTransStatus = aresTransStatus; this.cryptogram = cryptogram; this.electronicCommerceIndicator = electronicCommerceIndicator; this.exemptionIndicator = exemptionIndicator; this.extraParams = extraParams; this.networkOptions = networkOptions; this.requestorChallengeIndicator = requestorChallengeIndicator; this.transactionId = transactionId; this.version = version; } public static Builder builder() { return new Builder(); } public static class Builder { private AresTransStatus aresTransStatus; private String cryptogram; private ElectronicCommerceIndicator electronicCommerceIndicator; private ExemptionIndicator exemptionIndicator; private Map extraParams; private NetworkOptions networkOptions; private String requestorChallengeIndicator; private String transactionId; private Version version; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure( this.aresTransStatus, this.cryptogram, this.electronicCommerceIndicator, this.exemptionIndicator, this.extraParams, this.networkOptions, this.requestorChallengeIndicator, this.transactionId, this.version); } /** The {@code transStatus} returned from the card Issuer’s ACS in the ARes. */ public Builder setAresTransStatus( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.AresTransStatus aresTransStatus) { this.aresTransStatus = aresTransStatus; return this; } /** * Required. The cryptogram, also known as the "authentication * value" (AAV, CAVV or AEVV). This value is 20 bytes, base64-encoded into a * 28-character string. (Most 3D Secure providers will return the base64-encoded version, * which is what you should specify here.) */ public Builder setCryptogram(String cryptogram) { this.cryptogram = cryptogram; return this; } /** * The Electronic Commerce Indicator (ECI) is returned by your 3D Secure provider and * indicates what degree of authentication was performed. */ public Builder setElectronicCommerceIndicator( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure .ElectronicCommerceIndicator electronicCommerceIndicator) { this.electronicCommerceIndicator = electronicCommerceIndicator; return this; } /** The exemption requested via 3DS and accepted by the issuer at authentication time. */ public Builder setExemptionIndicator( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.ExemptionIndicator exemptionIndicator) { this.exemptionIndicator = exemptionIndicator; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Network specific 3DS fields. Network specific arguments require an explicit card brand * choice. The parameter `payment_method_options.card.network`` must be populated * accordingly */ public Builder setNetworkOptions( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions networkOptions) { this.networkOptions = networkOptions; return this; } /** * The challenge indicator ({@code threeDSRequestorChallengeInd}) which was requested in * the AReq sent to the card Issuer's ACS. A string containing 2 digits from 01-99. */ public Builder setRequestorChallengeIndicator(String requestorChallengeIndicator) { this.requestorChallengeIndicator = requestorChallengeIndicator; return this; } /** * Required. For 3D Secure 1, the XID. For 3D Secure 2, the Directory * Server Transaction ID (dsTransID). */ public Builder setTransactionId(String transactionId) { this.transactionId = transactionId; return this; } /** Required. The version of 3D Secure that was performed. */ public Builder setVersion( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.Version version) { this.version = version; return this; } } @Getter public static class NetworkOptions { /** Cartes Bancaires-specific 3DS fields. */ @SerializedName("cartes_bancaires") CartesBancaires cartesBancaires; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private NetworkOptions(CartesBancaires cartesBancaires, Map extraParams) { this.cartesBancaires = cartesBancaires; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private CartesBancaires cartesBancaires; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure .NetworkOptions(this.cartesBancaires, this.extraParams); } /** Cartes Bancaires-specific 3DS fields. */ public Builder setCartesBancaires( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions .CartesBancaires cartesBancaires) { this.cartesBancaires = cartesBancaires; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } @Getter public static class CartesBancaires { /** * Required. The cryptogram calculation algorithm used by the card * Issuer's ACS to calculate the Authentication cryptogram. Also known as {@code * cavvAlgorithm}. messageExtension: CB-AVALGO */ @SerializedName("cb_avalgo") CbAvalgo cbAvalgo; /** * The exemption indicator returned from Cartes Bancaires in the ARes. message * extension: CB-EXEMPTION; string (4 characters) This is a 3 byte bitmap (low * significant byte first and most significant bit first) that has been Base64 encoded */ @SerializedName("cb_exemption") String cbExemption; /** * The risk score returned from Cartes Bancaires in the ARes. message extension: * CB-SCORE; numeric value 0-99 */ @SerializedName("cb_score") Long cbScore; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private CartesBancaires( CbAvalgo cbAvalgo, String cbExemption, Long cbScore, Map extraParams) { this.cbAvalgo = cbAvalgo; this.cbExemption = cbExemption; this.cbScore = cbScore; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private CbAvalgo cbAvalgo; private String cbExemption; private Long cbScore; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure .NetworkOptions.CartesBancaires build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure .NetworkOptions.CartesBancaires( this.cbAvalgo, this.cbExemption, this.cbScore, this.extraParams); } /** * Required. The cryptogram calculation algorithm used by the card * Issuer's ACS to calculate the Authentication cryptogram. Also known as {@code * cavvAlgorithm}. messageExtension: CB-AVALGO */ public Builder setCbAvalgo( PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions .CartesBancaires.CbAvalgo cbAvalgo) { this.cbAvalgo = cbAvalgo; return this; } /** * The exemption indicator returned from Cartes Bancaires in the ARes. message * extension: CB-EXEMPTION; string (4 characters) This is a 3 byte bitmap (low * significant byte first and most significant bit first) that has been Base64 encoded */ public Builder setCbExemption(String cbExemption) { this.cbExemption = cbExemption; return this; } /** * The risk score returned from Cartes Bancaires in the ARes. message extension: * CB-SCORE; numeric value 0-99 */ public Builder setCbScore(Long cbScore) { this.cbScore = cbScore; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions.CartesBancaires#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Card.ThreeDSecure.NetworkOptions.CartesBancaires#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum CbAvalgo implements ApiRequestParams.EnumParam { @SerializedName("0") N0("0"), @SerializedName("1") N1("1"), @SerializedName("2") N2("2"), @SerializedName("3") N3("3"), @SerializedName("4") N4("4"), @SerializedName("A") A("A"); @Getter(onMethod_ = {@Override}) private final String value; CbAvalgo(String value) { this.value = value; } } } } public enum AresTransStatus implements ApiRequestParams.EnumParam { @SerializedName("A") A("A"), @SerializedName("C") C("C"), @SerializedName("I") I("I"), @SerializedName("N") N("N"), @SerializedName("R") R("R"), @SerializedName("U") U("U"), @SerializedName("Y") Y("Y"); @Getter(onMethod_ = {@Override}) private final String value; AresTransStatus(String value) { this.value = value; } } public enum ElectronicCommerceIndicator implements ApiRequestParams.EnumParam { @SerializedName("01") N01("01"), @SerializedName("02") N02("02"), @SerializedName("05") N05("05"), @SerializedName("06") N06("06"), @SerializedName("07") N07("07"); @Getter(onMethod_ = {@Override}) private final String value; ElectronicCommerceIndicator(String value) { this.value = value; } } public enum ExemptionIndicator implements ApiRequestParams.EnumParam { @SerializedName("low_risk") LOW_RISK("low_risk"), @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; ExemptionIndicator(String value) { this.value = value; } } public enum Version implements ApiRequestParams.EnumParam { @SerializedName("1.0.2") N1__0__2("1.0.2"), @SerializedName("2.1.0") N2__1__0("2.1.0"), @SerializedName("2.2.0") N2__2__0("2.2.0"); @Getter(onMethod_ = {@Override}) private final String value; Version(String value) { this.value = value; } } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum Network implements ApiRequestParams.EnumParam { @SerializedName("amex") AMEX("amex"), @SerializedName("cartes_bancaires") CARTES_BANCAIRES("cartes_bancaires"), @SerializedName("diners") DINERS("diners"), @SerializedName("discover") DISCOVER("discover"), @SerializedName("eftpos_au") EFTPOS_AU("eftpos_au"), @SerializedName("girocard") GIROCARD("girocard"), @SerializedName("interac") INTERAC("interac"), @SerializedName("jcb") JCB("jcb"), @SerializedName("mastercard") MASTERCARD("mastercard"), @SerializedName("unionpay") UNIONPAY("unionpay"), @SerializedName("unknown") UNKNOWN("unknown"), @SerializedName("visa") VISA("visa"); @Getter(onMethod_ = {@Override}) private final String value; Network(String value) { this.value = value; } } public enum RequestDecrementalAuthorization implements ApiRequestParams.EnumParam { @SerializedName("if_available") IF_AVAILABLE("if_available"), @SerializedName("never") NEVER("never"); @Getter(onMethod_ = {@Override}) private final String value; RequestDecrementalAuthorization(String value) { this.value = value; } } public enum RequestExtendedAuthorization implements ApiRequestParams.EnumParam { @SerializedName("if_available") IF_AVAILABLE("if_available"), @SerializedName("never") NEVER("never"); @Getter(onMethod_ = {@Override}) private final String value; RequestExtendedAuthorization(String value) { this.value = value; } } public enum RequestIncrementalAuthorization implements ApiRequestParams.EnumParam { @SerializedName("if_available") IF_AVAILABLE("if_available"), @SerializedName("never") NEVER("never"); @Getter(onMethod_ = {@Override}) private final String value; RequestIncrementalAuthorization(String value) { this.value = value; } } public enum RequestMulticapture implements ApiRequestParams.EnumParam { @SerializedName("if_available") IF_AVAILABLE("if_available"), @SerializedName("never") NEVER("never"); @Getter(onMethod_ = {@Override}) private final String value; RequestMulticapture(String value) { this.value = value; } } public enum RequestOvercapture implements ApiRequestParams.EnumParam { @SerializedName("if_available") IF_AVAILABLE("if_available"), @SerializedName("never") NEVER("never"); @Getter(onMethod_ = {@Override}) private final String value; RequestOvercapture(String value) { this.value = value; } } public enum RequestThreeDSecure implements ApiRequestParams.EnumParam { @SerializedName("any") ANY("any"), @SerializedName("automatic") AUTOMATIC("automatic"), @SerializedName("challenge") CHALLENGE("challenge"); @Getter(onMethod_ = {@Override}) private final String value; RequestThreeDSecure(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class CardPresent { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Request ability to capture this payment beyond the standard authorization * validity window. */ @SerializedName("request_extended_authorization") Boolean requestExtendedAuthorization; /** * Request ability to increment * this PaymentIntent if the combination of MCC and card brand is eligible. Check incremental_authorization_supported * in the Confirm response * to verify support. */ @SerializedName("request_incremental_authorization_support") Boolean requestIncrementalAuthorizationSupport; /** * Network routing priority on co-branded EMV cards supporting domestic debit and * international card schemes. */ @SerializedName("routing") Routing routing; private CardPresent( Map extraParams, Boolean requestExtendedAuthorization, Boolean requestIncrementalAuthorizationSupport, Routing routing) { this.extraParams = extraParams; this.requestExtendedAuthorization = requestExtendedAuthorization; this.requestIncrementalAuthorizationSupport = requestIncrementalAuthorizationSupport; this.routing = routing; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Boolean requestExtendedAuthorization; private Boolean requestIncrementalAuthorizationSupport; private Routing routing; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent( this.extraParams, this.requestExtendedAuthorization, this.requestIncrementalAuthorizationSupport, this.routing); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Request ability to capture this payment beyond the standard authorization * validity window. */ public Builder setRequestExtendedAuthorization(Boolean requestExtendedAuthorization) { this.requestExtendedAuthorization = requestExtendedAuthorization; return this; } /** * Request ability to increment * this PaymentIntent if the combination of MCC and card brand is eligible. Check incremental_authorization_supported * in the Confirm response * to verify support. */ public Builder setRequestIncrementalAuthorizationSupport( Boolean requestIncrementalAuthorizationSupport) { this.requestIncrementalAuthorizationSupport = requestIncrementalAuthorizationSupport; return this; } /** * Network routing priority on co-branded EMV cards supporting domestic debit and * international card schemes. */ public Builder setRouting( PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent.Routing routing) { this.routing = routing; return this; } } @Getter public static class Routing { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Routing requested priority. */ @SerializedName("requested_priority") RequestedPriority requestedPriority; private Routing(Map extraParams, RequestedPriority requestedPriority) { this.extraParams = extraParams; this.requestedPriority = requestedPriority; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private RequestedPriority requestedPriority; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent.Routing build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent.Routing( this.extraParams, this.requestedPriority); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent.Routing#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent.Routing#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Routing requested priority. */ public Builder setRequestedPriority( PaymentIntentConfirmParams.PaymentMethodOptions.CardPresent.Routing.RequestedPriority requestedPriority) { this.requestedPriority = requestedPriority; return this; } } public enum RequestedPriority implements ApiRequestParams.EnumParam { @SerializedName("domestic") DOMESTIC("domestic"), @SerializedName("international") INTERNATIONAL("international"); @Getter(onMethod_ = {@Override}) private final String value; RequestedPriority(String value) { this.value = value; } } } } @Getter public static class Cashapp { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Cashapp( ApiRequestParams.EnumParam captureMethod, Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp( this.captureMethod, this.extraParams, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Cashapp.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class CustomerBalance { /** * Configuration for the bank transfer funding type, if the {@code funding_type} is set to * {@code bank_transfer}. */ @SerializedName("bank_transfer") BankTransfer bankTransfer; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * The funding method type to be used when there are not enough funds in the customer balance. * Permitted values include: {@code bank_transfer}. */ @SerializedName("funding_type") FundingType fundingType; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private CustomerBalance( BankTransfer bankTransfer, Map extraParams, FundingType fundingType, SetupFutureUsage setupFutureUsage) { this.bankTransfer = bankTransfer; this.extraParams = extraParams; this.fundingType = fundingType; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private BankTransfer bankTransfer; private Map extraParams; private FundingType fundingType; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance( this.bankTransfer, this.extraParams, this.fundingType, this.setupFutureUsage); } /** * Configuration for the bank transfer funding type, if the {@code funding_type} is set to * {@code bank_transfer}. */ public Builder setBankTransfer( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer bankTransfer) { this.bankTransfer = bankTransfer; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * The funding method type to be used when there are not enough funds in the customer * balance. Permitted values include: {@code bank_transfer}. */ public Builder setFundingType( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.FundingType fundingType) { this.fundingType = fundingType; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } @Getter public static class BankTransfer { /** Configuration for the eu_bank_transfer funding type. */ @SerializedName("eu_bank_transfer") EuBankTransfer euBankTransfer; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * List of address types that should be returned in the financial_addresses response. If not * specified, all valid types will be returned. * *

Permitted values include: {@code sort_code}, {@code zengin}, {@code iban}, or {@code * spei}. */ @SerializedName("requested_address_types") List< PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .RequestedAddressType> requestedAddressTypes; /** * Required. The list of bank transfer types that this PaymentIntent is * allowed to use for funding Permitted values include: {@code eu_bank_transfer}, {@code * gb_bank_transfer}, {@code jp_bank_transfer}, {@code mx_bank_transfer}, or {@code * us_bank_transfer}. */ @SerializedName("type") Type type; private BankTransfer( EuBankTransfer euBankTransfer, Map extraParams, List< PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .RequestedAddressType> requestedAddressTypes, Type type) { this.euBankTransfer = euBankTransfer; this.extraParams = extraParams; this.requestedAddressTypes = requestedAddressTypes; this.type = type; } public static Builder builder() { return new Builder(); } public static class Builder { private EuBankTransfer euBankTransfer; private Map extraParams; private List< PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .RequestedAddressType> requestedAddressTypes; private Type type; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer( this.euBankTransfer, this.extraParams, this.requestedAddressTypes, this.type); } /** Configuration for the eu_bank_transfer funding type. */ public Builder setEuBankTransfer( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .EuBankTransfer euBankTransfer) { this.euBankTransfer = euBankTransfer; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Add an element to `requestedAddressTypes` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original list. * See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer#requestedAddressTypes} * for the field documentation. */ public Builder addRequestedAddressType( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .RequestedAddressType element) { if (this.requestedAddressTypes == null) { this.requestedAddressTypes = new ArrayList<>(); } this.requestedAddressTypes.add(element); return this; } /** * Add all elements to `requestedAddressTypes` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original list. * See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer#requestedAddressTypes} * for the field documentation. */ public Builder addAllRequestedAddressType( List< PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .RequestedAddressType> elements) { if (this.requestedAddressTypes == null) { this.requestedAddressTypes = new ArrayList<>(); } this.requestedAddressTypes.addAll(elements); return this; } /** * Required. The list of bank transfer types that this PaymentIntent is * allowed to use for funding Permitted values include: {@code eu_bank_transfer}, {@code * gb_bank_transfer}, {@code jp_bank_transfer}, {@code mx_bank_transfer}, or {@code * us_bank_transfer}. */ public Builder setType( PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer.Type type) { this.type = type; return this; } } @Getter public static class EuBankTransfer { /** * Required. The desired country code of the bank account information. * Permitted values include: {@code BE}, {@code DE}, {@code ES}, {@code FR}, {@code IE}, * or {@code NL}. */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private EuBankTransfer(String country, Map extraParams) { this.country = country; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private String country; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer .EuBankTransfer build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance .BankTransfer.EuBankTransfer(this.country, this.extraParams); } /** * Required. The desired country code of the bank account information. * Permitted values include: {@code BE}, {@code DE}, {@code ES}, {@code FR}, {@code IE}, * or {@code NL}. */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer.EuBankTransfer#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.CustomerBalance.BankTransfer.EuBankTransfer#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } public enum RequestedAddressType implements ApiRequestParams.EnumParam { @SerializedName("aba") ABA("aba"), @SerializedName("iban") IBAN("iban"), @SerializedName("sepa") SEPA("sepa"), @SerializedName("sort_code") SORT_CODE("sort_code"), @SerializedName("spei") SPEI("spei"), @SerializedName("swift") SWIFT("swift"), @SerializedName("zengin") ZENGIN("zengin"); @Getter(onMethod_ = {@Override}) private final String value; RequestedAddressType(String value) { this.value = value; } } public enum Type implements ApiRequestParams.EnumParam { @SerializedName("eu_bank_transfer") EU_BANK_TRANSFER("eu_bank_transfer"), @SerializedName("gb_bank_transfer") GB_BANK_TRANSFER("gb_bank_transfer"), @SerializedName("jp_bank_transfer") JP_BANK_TRANSFER("jp_bank_transfer"), @SerializedName("mx_bank_transfer") MX_BANK_TRANSFER("mx_bank_transfer"), @SerializedName("us_bank_transfer") US_BANK_TRANSFER("us_bank_transfer"); @Getter(onMethod_ = {@Override}) private final String value; Type(String value) { this.value = value; } } } public enum FundingType implements ApiRequestParams.EnumParam { @SerializedName("bank_transfer") BANK_TRANSFER("bank_transfer"); @Getter(onMethod_ = {@Override}) private final String value; FundingType(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Eps { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Eps(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Eps build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Eps( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Eps#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Eps#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Eps.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Fpx { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Fpx(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Fpx build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Fpx( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Fpx#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Fpx#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Fpx.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Giropay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Giropay(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Giropay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Giropay( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Giropay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Giropay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Giropay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Grabpay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Grabpay(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Grabpay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Grabpay( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Grabpay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Grabpay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Grabpay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Ideal { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Ideal(Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Ideal build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Ideal( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Ideal#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Ideal#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Ideal.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class InteracPresent { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private InteracPresent(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.InteracPresent build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.InteracPresent( this.extraParams); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.InteracPresent#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.InteracPresent#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class Klarna { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Preferred language of the Klarna authorization page that the customer is redirected to. */ @SerializedName("preferred_locale") PreferredLocale preferredLocale; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Klarna( ApiRequestParams.EnumParam captureMethod, Map extraParams, PreferredLocale preferredLocale, SetupFutureUsage setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.preferredLocale = preferredLocale; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private PreferredLocale preferredLocale; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Klarna build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Klarna( this.captureMethod, this.extraParams, this.preferredLocale, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Klarna.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Klarna#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Klarna#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Preferred language of the Klarna authorization page that the customer is redirected to. */ public Builder setPreferredLocale( PaymentIntentConfirmParams.PaymentMethodOptions.Klarna.PreferredLocale preferredLocale) { this.preferredLocale = preferredLocale; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Klarna.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum PreferredLocale implements ApiRequestParams.EnumParam { @SerializedName("cs-CZ") CS_CZ("cs-CZ"), @SerializedName("da-DK") DA_DK("da-DK"), @SerializedName("de-AT") DE_AT("de-AT"), @SerializedName("de-CH") DE_CH("de-CH"), @SerializedName("de-DE") DE_DE("de-DE"), @SerializedName("el-GR") EL_GR("el-GR"), @SerializedName("en-AT") EN_AT("en-AT"), @SerializedName("en-AU") EN_AU("en-AU"), @SerializedName("en-BE") EN_BE("en-BE"), @SerializedName("en-CA") EN_CA("en-CA"), @SerializedName("en-CH") EN_CH("en-CH"), @SerializedName("en-CZ") EN_CZ("en-CZ"), @SerializedName("en-DE") EN_DE("en-DE"), @SerializedName("en-DK") EN_DK("en-DK"), @SerializedName("en-ES") EN_ES("en-ES"), @SerializedName("en-FI") EN_FI("en-FI"), @SerializedName("en-FR") EN_FR("en-FR"), @SerializedName("en-GB") EN_GB("en-GB"), @SerializedName("en-GR") EN_GR("en-GR"), @SerializedName("en-IE") EN_IE("en-IE"), @SerializedName("en-IT") EN_IT("en-IT"), @SerializedName("en-NL") EN_NL("en-NL"), @SerializedName("en-NO") EN_NO("en-NO"), @SerializedName("en-NZ") EN_NZ("en-NZ"), @SerializedName("en-PL") EN_PL("en-PL"), @SerializedName("en-PT") EN_PT("en-PT"), @SerializedName("en-RO") EN_RO("en-RO"), @SerializedName("en-SE") EN_SE("en-SE"), @SerializedName("en-US") EN_US("en-US"), @SerializedName("es-ES") ES_ES("es-ES"), @SerializedName("es-US") ES_US("es-US"), @SerializedName("fi-FI") FI_FI("fi-FI"), @SerializedName("fr-BE") FR_BE("fr-BE"), @SerializedName("fr-CA") FR_CA("fr-CA"), @SerializedName("fr-CH") FR_CH("fr-CH"), @SerializedName("fr-FR") FR_FR("fr-FR"), @SerializedName("it-CH") IT_CH("it-CH"), @SerializedName("it-IT") IT_IT("it-IT"), @SerializedName("nb-NO") NB_NO("nb-NO"), @SerializedName("nl-BE") NL_BE("nl-BE"), @SerializedName("nl-NL") NL_NL("nl-NL"), @SerializedName("pl-PL") PL_PL("pl-PL"), @SerializedName("pt-PT") PT_PT("pt-PT"), @SerializedName("ro-RO") RO_RO("ro-RO"), @SerializedName("sv-FI") SV_FI("sv-FI"), @SerializedName("sv-SE") SV_SE("sv-SE"); @Getter(onMethod_ = {@Override}) private final String value; PreferredLocale(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Konbini { /** * An optional 10 to 11 digit numeric-only string determining the confirmation code at * applicable convenience stores. Must not consist of only zeroes and could be rejected in * case of insufficient uniqueness. We recommend to use the customer's phone number. */ @SerializedName("confirmation_number") Object confirmationNumber; /** * The number of calendar days (between 1 and 60) after which Konbini payment instructions * will expire. For example, if a PaymentIntent is confirmed with Konbini and {@code * expires_after_days} set to 2 on Monday JST, the instructions will expire on Wednesday * 23:59:59 JST. Defaults to 3 days. */ @SerializedName("expires_after_days") Object expiresAfterDays; /** * The timestamp at which the Konbini payment instructions will expire. Only one of {@code * expires_after_days} or {@code expires_at} may be set. */ @SerializedName("expires_at") Object expiresAt; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * A product descriptor of up to 22 characters, which will appear to customers at the * convenience store. */ @SerializedName("product_description") Object productDescription; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Konbini( Object confirmationNumber, Object expiresAfterDays, Object expiresAt, Map extraParams, Object productDescription, SetupFutureUsage setupFutureUsage) { this.confirmationNumber = confirmationNumber; this.expiresAfterDays = expiresAfterDays; this.expiresAt = expiresAt; this.extraParams = extraParams; this.productDescription = productDescription; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Object confirmationNumber; private Object expiresAfterDays; private Object expiresAt; private Map extraParams; private Object productDescription; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Konbini build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Konbini( this.confirmationNumber, this.expiresAfterDays, this.expiresAt, this.extraParams, this.productDescription, this.setupFutureUsage); } /** * An optional 10 to 11 digit numeric-only string determining the confirmation code at * applicable convenience stores. Must not consist of only zeroes and could be rejected in * case of insufficient uniqueness. We recommend to use the customer's phone number. */ public Builder setConfirmationNumber(String confirmationNumber) { this.confirmationNumber = confirmationNumber; return this; } /** * An optional 10 to 11 digit numeric-only string determining the confirmation code at * applicable convenience stores. Must not consist of only zeroes and could be rejected in * case of insufficient uniqueness. We recommend to use the customer's phone number. */ public Builder setConfirmationNumber(EmptyParam confirmationNumber) { this.confirmationNumber = confirmationNumber; return this; } /** * The number of calendar days (between 1 and 60) after which Konbini payment instructions * will expire. For example, if a PaymentIntent is confirmed with Konbini and {@code * expires_after_days} set to 2 on Monday JST, the instructions will expire on Wednesday * 23:59:59 JST. Defaults to 3 days. */ public Builder setExpiresAfterDays(Long expiresAfterDays) { this.expiresAfterDays = expiresAfterDays; return this; } /** * The number of calendar days (between 1 and 60) after which Konbini payment instructions * will expire. For example, if a PaymentIntent is confirmed with Konbini and {@code * expires_after_days} set to 2 on Monday JST, the instructions will expire on Wednesday * 23:59:59 JST. Defaults to 3 days. */ public Builder setExpiresAfterDays(EmptyParam expiresAfterDays) { this.expiresAfterDays = expiresAfterDays; return this; } /** * The timestamp at which the Konbini payment instructions will expire. Only one of {@code * expires_after_days} or {@code expires_at} may be set. */ public Builder setExpiresAt(Long expiresAt) { this.expiresAt = expiresAt; return this; } /** * The timestamp at which the Konbini payment instructions will expire. Only one of {@code * expires_after_days} or {@code expires_at} may be set. */ public Builder setExpiresAt(EmptyParam expiresAt) { this.expiresAt = expiresAt; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Konbini#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Konbini#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * A product descriptor of up to 22 characters, which will appear to customers at the * convenience store. */ public Builder setProductDescription(String productDescription) { this.productDescription = productDescription; return this; } /** * A product descriptor of up to 22 characters, which will appear to customers at the * convenience store. */ public Builder setProductDescription(EmptyParam productDescription) { this.productDescription = productDescription; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Konbini.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Link { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** [Deprecated] This is a legacy parameter that no longer has any function. */ @SerializedName("persistent_token") @Deprecated String persistentToken; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Link( ApiRequestParams.EnumParam captureMethod, Map extraParams, String persistentToken, ApiRequestParams.EnumParam setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.persistentToken = persistentToken; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private String persistentToken; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Link build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Link( this.captureMethod, this.extraParams, this.persistentToken, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Link.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Link#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Link#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** [Deprecated] This is a legacy parameter that no longer has any function. */ @Deprecated public Builder setPersistentToken(String persistentToken) { this.persistentToken = persistentToken; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Link.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class MbWay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private MbWay(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.MbWay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.MbWay( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.MbWay#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.MbWay#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.MbWay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Mobilepay { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Mobilepay( ApiRequestParams.EnumParam captureMethod, Map extraParams, SetupFutureUsage setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay( this.captureMethod, this.extraParams, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Mobilepay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Multibanco { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Multibanco(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Multibanco build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Multibanco( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Multibanco#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Multibanco#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Multibanco.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Oxxo { /** * The number of calendar days before an OXXO voucher expires. For example, if you create an * OXXO voucher on Monday and you set expires_after_days to 2, the OXXO invoice will expire on * Wednesday at 23:59 America/Mexico_City time. */ @SerializedName("expires_after_days") Long expiresAfterDays; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Oxxo( Long expiresAfterDays, Map extraParams, SetupFutureUsage setupFutureUsage) { this.expiresAfterDays = expiresAfterDays; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Long expiresAfterDays; private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Oxxo build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Oxxo( this.expiresAfterDays, this.extraParams, this.setupFutureUsage); } /** * The number of calendar days before an OXXO voucher expires. For example, if you create an * OXXO voucher on Monday and you set expires_after_days to 2, the OXXO invoice will expire * on Wednesday at 23:59 America/Mexico_City time. */ public Builder setExpiresAfterDays(Long expiresAfterDays) { this.expiresAfterDays = expiresAfterDays; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Oxxo#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Oxxo#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Oxxo.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class P24 { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; /** Confirm that the payer has accepted the P24 terms and conditions. */ @SerializedName("tos_shown_and_accepted") Boolean tosShownAndAccepted; private P24( Map extraParams, SetupFutureUsage setupFutureUsage, Boolean tosShownAndAccepted) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; this.tosShownAndAccepted = tosShownAndAccepted; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; private Boolean tosShownAndAccepted; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.P24 build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.P24( this.extraParams, this.setupFutureUsage, this.tosShownAndAccepted); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.P24#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.P24#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.P24.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** Confirm that the payer has accepted the P24 terms and conditions. */ public Builder setTosShownAndAccepted(Boolean tosShownAndAccepted) { this.tosShownAndAccepted = tosShownAndAccepted; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Paynow { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Paynow(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Paynow build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Paynow( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Paynow#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Paynow#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Paynow.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Paypal { /** Controls when the funds will be captured from the customer's account. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Preferred locale of * the PayPal checkout page that the customer is redirected to. */ @SerializedName("preferred_locale") PreferredLocale preferredLocale; /** * A reference of the PayPal transaction visible to customer which is mapped to PayPal's * invoice ID. This must be a globally unique ID if you have configured in your PayPal * settings to block multiple payments per invoice ID. */ @SerializedName("reference") String reference; /** * A reference of the PayPal transaction visible to customer which is mapped to PayPal's * invoice ID. This must be a globally unique ID if you have configured in your PayPal * settings to block multiple payments per invoice ID. */ @SerializedName("reference_id") String referenceId; /** The risk correlation ID for an on-session payment using a saved PayPal payment method. */ @SerializedName("risk_correlation_id") String riskCorrelationId; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; /** * The Stripe connected account IDs of the sellers on the platform for this transaction * (optional). Only allowed when separate charges and * transfers are used. */ @SerializedName("subsellers") List subsellers; private Paypal( ApiRequestParams.EnumParam captureMethod, Map extraParams, PreferredLocale preferredLocale, String reference, String referenceId, String riskCorrelationId, ApiRequestParams.EnumParam setupFutureUsage, List subsellers) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.preferredLocale = preferredLocale; this.reference = reference; this.referenceId = referenceId; this.riskCorrelationId = riskCorrelationId; this.setupFutureUsage = setupFutureUsage; this.subsellers = subsellers; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private PreferredLocale preferredLocale; private String reference; private String referenceId; private String riskCorrelationId; private ApiRequestParams.EnumParam setupFutureUsage; private List subsellers; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Paypal build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Paypal( this.captureMethod, this.extraParams, this.preferredLocale, this.reference, this.referenceId, this.riskCorrelationId, this.setupFutureUsage, this.subsellers); } /** Controls when the funds will be captured from the customer's account. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.Paypal.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** Controls when the funds will be captured from the customer's account. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Paypal#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Paypal#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Preferred locale * of the PayPal checkout page that the customer is redirected to. */ public Builder setPreferredLocale( PaymentIntentConfirmParams.PaymentMethodOptions.Paypal.PreferredLocale preferredLocale) { this.preferredLocale = preferredLocale; return this; } /** * A reference of the PayPal transaction visible to customer which is mapped to PayPal's * invoice ID. This must be a globally unique ID if you have configured in your PayPal * settings to block multiple payments per invoice ID. */ public Builder setReference(String reference) { this.reference = reference; return this; } /** * A reference of the PayPal transaction visible to customer which is mapped to PayPal's * invoice ID. This must be a globally unique ID if you have configured in your PayPal * settings to block multiple payments per invoice ID. */ public Builder setReferenceId(String referenceId) { this.referenceId = referenceId; return this; } /** * The risk correlation ID for an on-session payment using a saved PayPal payment method. */ public Builder setRiskCorrelationId(String riskCorrelationId) { this.riskCorrelationId = riskCorrelationId; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Paypal.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * Add an element to `subsellers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Paypal#subsellers} for the field * documentation. */ public Builder addSubseller(String element) { if (this.subsellers == null) { this.subsellers = new ArrayList<>(); } this.subsellers.add(element); return this; } /** * Add all elements to `subsellers` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Paypal#subsellers} for the field * documentation. */ public Builder addAllSubseller(List elements) { if (this.subsellers == null) { this.subsellers = new ArrayList<>(); } this.subsellers.addAll(elements); return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum PreferredLocale implements ApiRequestParams.EnumParam { @SerializedName("cs-CZ") CS_CZ("cs-CZ"), @SerializedName("da-DK") DA_DK("da-DK"), @SerializedName("de-AT") DE_AT("de-AT"), @SerializedName("de-DE") DE_DE("de-DE"), @SerializedName("de-LU") DE_LU("de-LU"), @SerializedName("el-GR") EL_GR("el-GR"), @SerializedName("en-GB") EN_GB("en-GB"), @SerializedName("en-US") EN_US("en-US"), @SerializedName("es-ES") ES_ES("es-ES"), @SerializedName("fi-FI") FI_FI("fi-FI"), @SerializedName("fr-BE") FR_BE("fr-BE"), @SerializedName("fr-FR") FR_FR("fr-FR"), @SerializedName("fr-LU") FR_LU("fr-LU"), @SerializedName("hu-HU") HU_HU("hu-HU"), @SerializedName("it-IT") IT_IT("it-IT"), @SerializedName("nl-BE") NL_BE("nl-BE"), @SerializedName("nl-NL") NL_NL("nl-NL"), @SerializedName("pl-PL") PL_PL("pl-PL"), @SerializedName("pt-PT") PT_PT("pt-PT"), @SerializedName("sk-SK") SK_SK("sk-SK"), @SerializedName("sv-SE") SV_SE("sv-SE"); @Getter(onMethod_ = {@Override}) private final String value; PreferredLocale(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Payto { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Additional fields for Mandate creation. Only {@code purpose} field is configurable for * PayTo PaymentIntent with {@code setup_future_usage=none}. Other fields are only applicable * to PayTo PaymentIntent with {@code setup_future_usage=off_session} */ @SerializedName("mandate_options") MandateOptions mandateOptions; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Payto( Map extraParams, MandateOptions mandateOptions, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.mandateOptions = mandateOptions; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private MandateOptions mandateOptions; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Payto build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Payto( this.extraParams, this.mandateOptions, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Payto#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Payto#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Additional fields for Mandate creation. Only {@code purpose} field is configurable for * PayTo PaymentIntent with {@code setup_future_usage=none}. Other fields are only * applicable to PayTo PaymentIntent with {@code setup_future_usage=off_session} */ public Builder setMandateOptions( PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions mandateOptions) { this.mandateOptions = mandateOptions; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Payto.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } @Getter public static class MandateOptions { /** * Amount that will be collected. It is required when {@code amount_type} is {@code fixed}. */ @SerializedName("amount") Long amount; /** * The type of amount that will be collected. The amount charged must be exact or up to the * value of {@code amount} param for {@code fixed} or {@code maximum} type respectively. */ @SerializedName("amount_type") AmountType amountType; /** * Date, in YYYY-MM-DD format, after which payments will not be collected. Defaults to no * end date. */ @SerializedName("end_date") String endDate; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The periodicity at which payments will be collected. */ @SerializedName("payment_schedule") PaymentSchedule paymentSchedule; /** * The number of payments that will be made during a payment period. Defaults to 1 except * for when {@code payment_schedule} is {@code adhoc}. In that case, it defaults to no * limit. */ @SerializedName("payments_per_period") Long paymentsPerPeriod; /** The purpose for which payments are made. Defaults to retail. */ @SerializedName("purpose") Purpose purpose; private MandateOptions( Long amount, AmountType amountType, String endDate, Map extraParams, PaymentSchedule paymentSchedule, Long paymentsPerPeriod, Purpose purpose) { this.amount = amount; this.amountType = amountType; this.endDate = endDate; this.extraParams = extraParams; this.paymentSchedule = paymentSchedule; this.paymentsPerPeriod = paymentsPerPeriod; this.purpose = purpose; } public static Builder builder() { return new Builder(); } public static class Builder { private Long amount; private AmountType amountType; private String endDate; private Map extraParams; private PaymentSchedule paymentSchedule; private Long paymentsPerPeriod; private Purpose purpose; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions( this.amount, this.amountType, this.endDate, this.extraParams, this.paymentSchedule, this.paymentsPerPeriod, this.purpose); } /** * Amount that will be collected. It is required when {@code amount_type} is {@code * fixed}. */ public Builder setAmount(Long amount) { this.amount = amount; return this; } /** * The type of amount that will be collected. The amount charged must be exact or up to * the value of {@code amount} param for {@code fixed} or {@code maximum} type * respectively. */ public Builder setAmountType( PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions.AmountType amountType) { this.amountType = amountType; return this; } /** * Date, in YYYY-MM-DD format, after which payments will not be collected. Defaults to no * end date. */ public Builder setEndDate(String endDate) { this.endDate = endDate; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The periodicity at which payments will be collected. */ public Builder setPaymentSchedule( PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions.PaymentSchedule paymentSchedule) { this.paymentSchedule = paymentSchedule; return this; } /** * The number of payments that will be made during a payment period. Defaults to 1 except * for when {@code payment_schedule} is {@code adhoc}. In that case, it defaults to no * limit. */ public Builder setPaymentsPerPeriod(Long paymentsPerPeriod) { this.paymentsPerPeriod = paymentsPerPeriod; return this; } /** The purpose for which payments are made. Defaults to retail. */ public Builder setPurpose( PaymentIntentConfirmParams.PaymentMethodOptions.Payto.MandateOptions.Purpose purpose) { this.purpose = purpose; return this; } } public enum AmountType implements ApiRequestParams.EnumParam { @SerializedName("fixed") FIXED("fixed"), @SerializedName("maximum") MAXIMUM("maximum"); @Getter(onMethod_ = {@Override}) private final String value; AmountType(String value) { this.value = value; } } public enum PaymentSchedule implements ApiRequestParams.EnumParam { @SerializedName("adhoc") ADHOC("adhoc"), @SerializedName("annual") ANNUAL("annual"), @SerializedName("daily") DAILY("daily"), @SerializedName("fortnightly") FORTNIGHTLY("fortnightly"), @SerializedName("monthly") MONTHLY("monthly"), @SerializedName("quarterly") QUARTERLY("quarterly"), @SerializedName("semi_annual") SEMI_ANNUAL("semi_annual"), @SerializedName("weekly") WEEKLY("weekly"); @Getter(onMethod_ = {@Override}) private final String value; PaymentSchedule(String value) { this.value = value; } } public enum Purpose implements ApiRequestParams.EnumParam { @SerializedName("dependant_support") DEPENDANT_SUPPORT("dependant_support"), @SerializedName("government") GOVERNMENT("government"), @SerializedName("loan") LOAN("loan"), @SerializedName("mortgage") MORTGAGE("mortgage"), @SerializedName("other") OTHER("other"), @SerializedName("pension") PENSION("pension"), @SerializedName("personal") PERSONAL("personal"), @SerializedName("retail") RETAIL("retail"), @SerializedName("salary") SALARY("salary"), @SerializedName("tax") TAX("tax"), @SerializedName("utility") UTILITY("utility"); @Getter(onMethod_ = {@Override}) private final String value; Purpose(String value) { this.value = value; } } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Pix { /** * The number of seconds (between 10 and 1209600) after which Pix payment will expire. * Defaults to 86400 seconds. */ @SerializedName("expires_after_seconds") Long expiresAfterSeconds; /** * The timestamp at which the Pix expires (between 10 and 1209600 seconds in the future). * Defaults to 1 day in the future. */ @SerializedName("expires_at") Long expiresAt; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Pix( Long expiresAfterSeconds, Long expiresAt, Map extraParams, SetupFutureUsage setupFutureUsage) { this.expiresAfterSeconds = expiresAfterSeconds; this.expiresAt = expiresAt; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Long expiresAfterSeconds; private Long expiresAt; private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Pix build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Pix( this.expiresAfterSeconds, this.expiresAt, this.extraParams, this.setupFutureUsage); } /** * The number of seconds (between 10 and 1209600) after which Pix payment will expire. * Defaults to 86400 seconds. */ public Builder setExpiresAfterSeconds(Long expiresAfterSeconds) { this.expiresAfterSeconds = expiresAfterSeconds; return this; } /** * The timestamp at which the Pix expires (between 10 and 1209600 seconds in the future). * Defaults to 1 day in the future. */ public Builder setExpiresAt(Long expiresAt) { this.expiresAt = expiresAt; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Pix#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Pix#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Pix.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Promptpay { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Promptpay(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Promptpay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Promptpay( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Promptpay#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Promptpay#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Promptpay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Rechnung { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private Rechnung(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Rechnung build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Rechnung(this.extraParams); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Rechnung#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Rechnung#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } @Getter public static class RevolutPay { /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty value * for this parameter unsets the stored value for this payment method type. */ @SerializedName("capture_method") ApiRequestParams.EnumParam captureMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private RevolutPay( ApiRequestParams.EnumParam captureMethod, Map extraParams, ApiRequestParams.EnumParam setupFutureUsage) { this.captureMethod = captureMethod; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam captureMethod; private Map extraParams; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay( this.captureMethod, this.extraParams, this.setupFutureUsage); } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod( PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay.CaptureMethod captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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 {@code capture_method} is already set on the PaymentIntent, providing an empty * value for this parameter unsets the stored value for this payment method type. */ public Builder setCaptureMethod(EmptyParam captureMethod) { this.captureMethod = captureMethod; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.RevolutPay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class SepaDebit { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Additional fields for Mandate creation. */ @SerializedName("mandate_options") MandateOptions mandateOptions; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private SepaDebit( Map extraParams, MandateOptions mandateOptions, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.mandateOptions = mandateOptions; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private MandateOptions mandateOptions; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit( this.extraParams, this.mandateOptions, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Additional fields for Mandate creation. */ public Builder setMandateOptions( PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit.MandateOptions mandateOptions) { this.mandateOptions = mandateOptions; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } @Getter public static class MandateOptions { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private MandateOptions(Map extraParams) { this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit.MandateOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit.MandateOptions( this.extraParams); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit.MandateOptions#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.SepaDebit.MandateOptions#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Sofort { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Language shown to the payer on redirect. */ @SerializedName("preferred_language") ApiRequestParams.EnumParam preferredLanguage; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; private Sofort( Map extraParams, ApiRequestParams.EnumParam preferredLanguage, ApiRequestParams.EnumParam setupFutureUsage) { this.extraParams = extraParams; this.preferredLanguage = preferredLanguage; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private ApiRequestParams.EnumParam preferredLanguage; private ApiRequestParams.EnumParam setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Sofort build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Sofort( this.extraParams, this.preferredLanguage, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Sofort#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Sofort#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Language shown to the payer on redirect. */ public Builder setPreferredLanguage( PaymentIntentConfirmParams.PaymentMethodOptions.Sofort.PreferredLanguage preferredLanguage) { this.preferredLanguage = preferredLanguage; return this; } /** Language shown to the payer on redirect. */ public Builder setPreferredLanguage(EmptyParam preferredLanguage) { this.preferredLanguage = preferredLanguage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Sofort.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum PreferredLanguage implements ApiRequestParams.EnumParam { @SerializedName("de") DE("de"), @SerializedName("en") EN("en"), @SerializedName("es") ES("es"), @SerializedName("fr") FR("fr"), @SerializedName("it") IT("it"), @SerializedName("nl") NL("nl"), @SerializedName("pl") PL("pl"); @Getter(onMethod_ = {@Override}) private final String value; PreferredLanguage(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Swish { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** The order ID displayed in the Swish app after the payment is authorized. */ @SerializedName("reference") Object reference; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Swish( Map extraParams, Object reference, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.reference = reference; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Object reference; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Swish build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Swish( this.extraParams, this.reference, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Swish#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Swish#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** The order ID displayed in the Swish app after the payment is authorized. */ public Builder setReference(String reference) { this.reference = reference; return this; } /** The order ID displayed in the Swish app after the payment is authorized. */ public Builder setReference(EmptyParam reference) { this.reference = reference; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Swish.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Twint { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Twint(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Twint build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Twint( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Twint#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Twint#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Twint.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class UsBankAccount { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Additional fields for Financial Connections Session creation. */ @SerializedName("financial_connections") FinancialConnections financialConnections; /** Additional fields for Mandate creation. */ @SerializedName("mandate_options") MandateOptions mandateOptions; /** Additional fields for network related functions. */ @SerializedName("networks") Networks networks; /** Preferred transaction settlement speed. */ @SerializedName("preferred_settlement_speed") ApiRequestParams.EnumParam preferredSettlementSpeed; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") ApiRequestParams.EnumParam setupFutureUsage; /** Bank account verification method. */ @SerializedName("verification_method") VerificationMethod verificationMethod; private UsBankAccount( Map extraParams, FinancialConnections financialConnections, MandateOptions mandateOptions, Networks networks, ApiRequestParams.EnumParam preferredSettlementSpeed, ApiRequestParams.EnumParam setupFutureUsage, VerificationMethod verificationMethod) { this.extraParams = extraParams; this.financialConnections = financialConnections; this.mandateOptions = mandateOptions; this.networks = networks; this.preferredSettlementSpeed = preferredSettlementSpeed; this.setupFutureUsage = setupFutureUsage; this.verificationMethod = verificationMethod; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private FinancialConnections financialConnections; private MandateOptions mandateOptions; private Networks networks; private ApiRequestParams.EnumParam preferredSettlementSpeed; private ApiRequestParams.EnumParam setupFutureUsage; private VerificationMethod verificationMethod; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount( this.extraParams, this.financialConnections, this.mandateOptions, this.networks, this.preferredSettlementSpeed, this.setupFutureUsage, this.verificationMethod); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Additional fields for Financial Connections Session creation. */ public Builder setFinancialConnections( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections financialConnections) { this.financialConnections = financialConnections; return this; } /** Additional fields for Mandate creation. */ public Builder setMandateOptions( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.MandateOptions mandateOptions) { this.mandateOptions = mandateOptions; return this; } /** Additional fields for network related functions. */ public Builder setNetworks( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks networks) { this.networks = networks; return this; } /** Preferred transaction settlement speed. */ public Builder setPreferredSettlementSpeed( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.PreferredSettlementSpeed preferredSettlementSpeed) { this.preferredSettlementSpeed = preferredSettlementSpeed; return this; } /** Preferred transaction settlement speed. */ public Builder setPreferredSettlementSpeed(EmptyParam preferredSettlementSpeed) { this.preferredSettlementSpeed = preferredSettlementSpeed; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage(EmptyParam setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } /** Bank account verification method. */ public Builder setVerificationMethod( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.VerificationMethod verificationMethod) { this.verificationMethod = verificationMethod; return this; } } @Getter public static class FinancialConnections { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Provide filters for the linked accounts that the customer can select for the payment * method. */ @SerializedName("filters") Filters filters; /** Customize manual entry behavior. */ @SerializedName("manual_entry") ManualEntry manualEntry; /** * The list of permissions to request. If this parameter is passed, the {@code * payment_method} permission must be included. Valid permissions include: {@code balances}, * {@code ownership}, {@code payment_method}, and {@code transactions}. */ @SerializedName("permissions") List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Permission> permissions; /** List of data features that you would like to retrieve upon account creation. */ @SerializedName("prefetch") List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Prefetch> prefetch; /** * For webview integrations only. Upon completing OAuth login in the native browser, the * user will be redirected to this URL to return to your app. */ @SerializedName("return_url") String returnUrl; private FinancialConnections( Map extraParams, Filters filters, ManualEntry manualEntry, List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Permission> permissions, List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Prefetch> prefetch, String returnUrl) { this.extraParams = extraParams; this.filters = filters; this.manualEntry = manualEntry; this.permissions = permissions; this.prefetch = prefetch; this.returnUrl = returnUrl; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Filters filters; private ManualEntry manualEntry; private List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Permission> permissions; private List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Prefetch> prefetch; private String returnUrl; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections( this.extraParams, this.filters, this.manualEntry, this.permissions, this.prefetch, this.returnUrl); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Provide filters for the linked accounts that the customer can select for the payment * method. */ public Builder setFilters( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Filters filters) { this.filters = filters; return this; } /** Customize manual entry behavior. */ public Builder setManualEntry( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .ManualEntry manualEntry) { this.manualEntry = manualEntry; return this; } /** * Add an element to `permissions` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections#permissions} * for the field documentation. */ public Builder addPermission( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Permission element) { if (this.permissions == null) { this.permissions = new ArrayList<>(); } this.permissions.add(element); return this; } /** * Add all elements to `permissions` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original list. * See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections#permissions} * for the field documentation. */ public Builder addAllPermission( List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Permission> elements) { if (this.permissions == null) { this.permissions = new ArrayList<>(); } this.permissions.addAll(elements); return this; } /** * Add an element to `prefetch` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections#prefetch} * for the field documentation. */ public Builder addPrefetch( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Prefetch element) { if (this.prefetch == null) { this.prefetch = new ArrayList<>(); } this.prefetch.add(element); return this; } /** * Add all elements to `prefetch` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections#prefetch} * for the field documentation. */ public Builder addAllPrefetch( List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Prefetch> elements) { if (this.prefetch == null) { this.prefetch = new ArrayList<>(); } this.prefetch.addAll(elements); return this; } /** * For webview integrations only. Upon completing OAuth login in the native browser, the * user will be redirected to this URL to return to your app. */ public Builder setReturnUrl(String returnUrl) { this.returnUrl = returnUrl; return this; } } @Getter public static class Filters { /** * The account subcategories to use to filter for selectable accounts. Valid subcategories * are {@code checking} and {@code savings}. */ @SerializedName("account_subcategories") List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Filters.AccountSubcategory> accountSubcategories; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** ID of the institution to use to filter for selectable accounts. */ @SerializedName("institution") String institution; private Filters( List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Filters.AccountSubcategory> accountSubcategories, Map extraParams, String institution) { this.accountSubcategories = accountSubcategories; this.extraParams = extraParams; this.institution = institution; } public static Builder builder() { return new Builder(); } public static class Builder { private List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Filters.AccountSubcategory> accountSubcategories; private Map extraParams; private String institution; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Filters build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Filters( this.accountSubcategories, this.extraParams, this.institution); } /** * Add an element to `accountSubcategories` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original * list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.Filters#accountSubcategories} * for the field documentation. */ public Builder addAccountSubcategory( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .Filters.AccountSubcategory element) { if (this.accountSubcategories == null) { this.accountSubcategories = new ArrayList<>(); } this.accountSubcategories.add(element); return this; } /** * Add all elements to `accountSubcategories` list. A list is initialized for the first * `add/addAll` call, and subsequent calls adds additional elements to the original * list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.Filters#accountSubcategories} * for the field documentation. */ public Builder addAllAccountSubcategory( List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.Filters.AccountSubcategory> elements) { if (this.accountSubcategories == null) { this.accountSubcategories = new ArrayList<>(); } this.accountSubcategories.addAll(elements); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.Filters#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.Filters#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** ID of the institution to use to filter for selectable accounts. */ public Builder setInstitution(String institution) { this.institution = institution; return this; } } public enum AccountSubcategory implements ApiRequestParams.EnumParam { @SerializedName("checking") CHECKING("checking"), @SerializedName("savings") SAVINGS("savings"); @Getter(onMethod_ = {@Override}) private final String value; AccountSubcategory(String value) { this.value = value; } } } @Getter public static class ManualEntry { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * Required. Settings for configuring manual entry of account details. */ @SerializedName("mode") Mode mode; private ManualEntry(Map extraParams, Mode mode) { this.extraParams = extraParams; this.mode = mode; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private Mode mode; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.ManualEntry build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount .FinancialConnections.ManualEntry(this.extraParams, this.mode); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.ManualEntry#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections.ManualEntry#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Required. Settings for configuring manual entry of account details. */ public Builder setMode( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.FinancialConnections .ManualEntry.Mode mode) { this.mode = mode; return this; } } public enum Mode implements ApiRequestParams.EnumParam { @SerializedName("automatic") AUTOMATIC("automatic"), @SerializedName("custom") CUSTOM("custom"); @Getter(onMethod_ = {@Override}) private final String value; Mode(String value) { this.value = value; } } } public enum Permission implements ApiRequestParams.EnumParam { @SerializedName("balances") BALANCES("balances"), @SerializedName("ownership") OWNERSHIP("ownership"), @SerializedName("payment_method") PAYMENT_METHOD("payment_method"), @SerializedName("transactions") TRANSACTIONS("transactions"); @Getter(onMethod_ = {@Override}) private final String value; Permission(String value) { this.value = value; } } public enum Prefetch implements ApiRequestParams.EnumParam { @SerializedName("balances") BALANCES("balances"), @SerializedName("inferred_balances") INFERRED_BALANCES("inferred_balances"), @SerializedName("ownership") OWNERSHIP("ownership"), @SerializedName("transactions") TRANSACTIONS("transactions"); @Getter(onMethod_ = {@Override}) private final String value; Prefetch(String value) { this.value = value; } } } @Getter public static class MandateOptions { /** The method used to collect offline mandate customer acceptance. */ @SerializedName("collection_method") ApiRequestParams.EnumParam collectionMethod; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; private MandateOptions( ApiRequestParams.EnumParam collectionMethod, Map extraParams) { this.collectionMethod = collectionMethod; this.extraParams = extraParams; } public static Builder builder() { return new Builder(); } public static class Builder { private ApiRequestParams.EnumParam collectionMethod; private Map extraParams; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.MandateOptions build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.MandateOptions( this.collectionMethod, this.extraParams); } /** The method used to collect offline mandate customer acceptance. */ public Builder setCollectionMethod( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.MandateOptions .CollectionMethod collectionMethod) { this.collectionMethod = collectionMethod; return this; } /** The method used to collect offline mandate customer acceptance. */ public Builder setCollectionMethod(EmptyParam collectionMethod) { this.collectionMethod = collectionMethod; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.MandateOptions#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.MandateOptions#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } } public enum CollectionMethod implements ApiRequestParams.EnumParam { @SerializedName("paper") PAPER("paper"); @Getter(onMethod_ = {@Override}) private final String value; CollectionMethod(String value) { this.value = value; } } } @Getter public static class Networks { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Triggers validations to run across the selected networks. */ @SerializedName("requested") List requested; private Networks( Map extraParams, List requested) { this.extraParams = extraParams; this.requested = requested; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private List< PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks.Requested> requested; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks( this.extraParams, this.requested); } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks#extraParams} for * the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks#extraParams} for * the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * Add an element to `requested` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks#requested} for * the field documentation. */ public Builder addRequested( PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks.Requested element) { if (this.requested == null) { this.requested = new ArrayList<>(); } this.requested.add(element); return this; } /** * Add all elements to `requested` list. A list is initialized for the first `add/addAll` * call, and subsequent calls adds additional elements to the original list. See {@link * PaymentIntentConfirmParams.PaymentMethodOptions.UsBankAccount.Networks#requested} for * the field documentation. */ public Builder addAllRequested( List elements) { if (this.requested == null) { this.requested = new ArrayList<>(); } this.requested.addAll(elements); return this; } } public enum Requested implements ApiRequestParams.EnumParam { @SerializedName("ach") ACH("ach"), @SerializedName("us_domestic_wire") US_DOMESTIC_WIRE("us_domestic_wire"); @Getter(onMethod_ = {@Override}) private final String value; Requested(String value) { this.value = value; } } } public enum PreferredSettlementSpeed implements ApiRequestParams.EnumParam { @SerializedName("fastest") FASTEST("fastest"), @SerializedName("standard") STANDARD("standard"); @Getter(onMethod_ = {@Override}) private final String value; PreferredSettlementSpeed(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"), @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } public enum VerificationMethod implements ApiRequestParams.EnumParam { @SerializedName("automatic") AUTOMATIC("automatic"), @SerializedName("instant") INSTANT("instant"), @SerializedName("microdeposits") MICRODEPOSITS("microdeposits"); @Getter(onMethod_ = {@Override}) private final String value; VerificationMethod(String value) { this.value = value; } } } @Getter public static class WechatPay { /** The app ID registered with WeChat Pay. Only required when client is ios or android. */ @SerializedName("app_id") String appId; /** Required. The client type that the end customer will pay from */ @SerializedName("client") Client client; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private WechatPay( String appId, Client client, Map extraParams, SetupFutureUsage setupFutureUsage) { this.appId = appId; this.client = client; this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private String appId; private Client client; private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay( this.appId, this.client, this.extraParams, this.setupFutureUsage); } /** The app ID registered with WeChat Pay. Only required when client is ios or android. */ public Builder setAppId(String appId) { this.appId = appId; return this; } /** Required. The client type that the end customer will pay from */ public Builder setClient( PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay.Client client) { this.client = client; return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay#extraParams} * for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay#extraParams} * for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.WechatPay.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum Client implements ApiRequestParams.EnumParam { @SerializedName("android") ANDROID("android"), @SerializedName("ios") IOS("ios"), @SerializedName("web") WEB("web"); @Getter(onMethod_ = {@Override}) private final String value; Client(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } @Getter public static class Zip { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * 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 {@code 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 {@code setup_future_usage} to help you comply * with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using a * publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ @SerializedName("setup_future_usage") SetupFutureUsage setupFutureUsage; private Zip(Map extraParams, SetupFutureUsage setupFutureUsage) { this.extraParams = extraParams; this.setupFutureUsage = setupFutureUsage; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private SetupFutureUsage setupFutureUsage; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.PaymentMethodOptions.Zip build() { return new PaymentIntentConfirmParams.PaymentMethodOptions.Zip( this.extraParams, this.setupFutureUsage); } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Zip#extraParams} for the * field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.PaymentMethodOptions.Zip#extraParams} for the * field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * 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 {@code 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 {@code setup_future_usage} to help you * comply with regional legislation and network rules, such as SCA. * *

If you've already set {@code setup_future_usage} and you're performing a request using * a publishable key, you can only update the value from {@code on_session} to {@code * off_session}. */ public Builder setSetupFutureUsage( PaymentIntentConfirmParams.PaymentMethodOptions.Zip.SetupFutureUsage setupFutureUsage) { this.setupFutureUsage = setupFutureUsage; return this; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("none") NONE("none"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } } } @Getter public static class RadarOptions { /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** * A Radar Session is a snapshot of * the browser metadata and device details that help Radar make more accurate predictions on * your payments. */ @SerializedName("session") String session; private RadarOptions(Map extraParams, String session) { this.extraParams = extraParams; this.session = session; } public static Builder builder() { return new Builder(); } public static class Builder { private Map extraParams; private String session; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.RadarOptions build() { return new PaymentIntentConfirmParams.RadarOptions(this.extraParams, this.session); } /** * 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. See {@link * PaymentIntentConfirmParams.RadarOptions#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.RadarOptions#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** * A Radar Session is a snapshot of * the browser metadata and device details that help Radar make more accurate predictions on * your payments. */ public Builder setSession(String session) { this.session = session; return this; } } } @Getter public static class Shipping { /** Required. Shipping address. */ @SerializedName("address") Address address; /** The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc. */ @SerializedName("carrier") String carrier; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Required. Recipient name. */ @SerializedName("name") String name; /** Recipient phone (including extension). */ @SerializedName("phone") String phone; /** * The tracking number for a physical product, obtained from the delivery service. If multiple * tracking numbers were generated for this purchase, please separate them with commas. */ @SerializedName("tracking_number") String trackingNumber; private Shipping( Address address, String carrier, Map extraParams, String name, String phone, String trackingNumber) { this.address = address; this.carrier = carrier; this.extraParams = extraParams; this.name = name; this.phone = phone; this.trackingNumber = trackingNumber; } public static Builder builder() { return new Builder(); } public static class Builder { private Address address; private String carrier; private Map extraParams; private String name; private String phone; private String trackingNumber; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.Shipping build() { return new PaymentIntentConfirmParams.Shipping( this.address, this.carrier, this.extraParams, this.name, this.phone, this.trackingNumber); } /** Required. Shipping address. */ public Builder setAddress(PaymentIntentConfirmParams.Shipping.Address address) { this.address = address; return this; } /** The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc. */ public Builder setCarrier(String carrier) { this.carrier = carrier; return this; } /** * 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. See {@link * PaymentIntentConfirmParams.Shipping#extraParams} for the field documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. * See {@link PaymentIntentConfirmParams.Shipping#extraParams} for the field documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Required. Recipient name. */ public Builder setName(String name) { this.name = name; return this; } /** Recipient phone (including extension). */ public Builder setPhone(String phone) { this.phone = phone; return this; } /** * The tracking number for a physical product, obtained from the delivery service. If multiple * tracking numbers were generated for this purchase, please separate them with commas. */ public Builder setTrackingNumber(String trackingNumber) { this.trackingNumber = trackingNumber; return this; } } @Getter public static class Address { /** City, district, suburb, town, or village. */ @SerializedName("city") String city; /** * Two-letter country code (ISO * 3166-1 alpha-2). */ @SerializedName("country") String country; /** * 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 {@code @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. */ @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY) Map extraParams; /** Address line 1 (e.g., street, PO Box, or company name). */ @SerializedName("line1") String line1; /** Address line 2 (e.g., apartment, suite, unit, or building). */ @SerializedName("line2") String line2; /** ZIP or postal code. */ @SerializedName("postal_code") String postalCode; /** State, county, province, or region. */ @SerializedName("state") String state; private Address( String city, String country, Map extraParams, String line1, String line2, String postalCode, String state) { this.city = city; this.country = country; this.extraParams = extraParams; this.line1 = line1; this.line2 = line2; this.postalCode = postalCode; this.state = state; } public static Builder builder() { return new Builder(); } public static class Builder { private String city; private String country; private Map extraParams; private String line1; private String line2; private String postalCode; private String state; /** Finalize and obtain parameter instance from this builder. */ public PaymentIntentConfirmParams.Shipping.Address build() { return new PaymentIntentConfirmParams.Shipping.Address( this.city, this.country, this.extraParams, this.line1, this.line2, this.postalCode, this.state); } /** City, district, suburb, town, or village. */ public Builder setCity(String city) { this.city = city; return this; } /** * Two-letter country code (ISO * 3166-1 alpha-2). */ public Builder setCountry(String country) { this.country = country; return this; } /** * 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. See {@link PaymentIntentConfirmParams.Shipping.Address#extraParams} for the field * documentation. */ public Builder putExtraParam(String key, Object value) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.put(key, value); return this; } /** * 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. See {@link PaymentIntentConfirmParams.Shipping.Address#extraParams} for the field * documentation. */ public Builder putAllExtraParam(Map map) { if (this.extraParams == null) { this.extraParams = new HashMap<>(); } this.extraParams.putAll(map); return this; } /** Address line 1 (e.g., street, PO Box, or company name). */ public Builder setLine1(String line1) { this.line1 = line1; return this; } /** Address line 2 (e.g., apartment, suite, unit, or building). */ public Builder setLine2(String line2) { this.line2 = line2; return this; } /** ZIP or postal code. */ public Builder setPostalCode(String postalCode) { this.postalCode = postalCode; return this; } /** State, county, province, or region. */ public Builder setState(String state) { this.state = state; return this; } } } } public enum CaptureMethod implements ApiRequestParams.EnumParam { @SerializedName("automatic") AUTOMATIC("automatic"), @SerializedName("automatic_async") AUTOMATIC_ASYNC("automatic_async"), @SerializedName("manual") MANUAL("manual"); @Getter(onMethod_ = {@Override}) private final String value; CaptureMethod(String value) { this.value = value; } } public enum OffSession implements ApiRequestParams.EnumParam { @SerializedName("one_off") ONE_OFF("one_off"), @SerializedName("recurring") RECURRING("recurring"); @Getter(onMethod_ = {@Override}) private final String value; OffSession(String value) { this.value = value; } } public enum SetupFutureUsage implements ApiRequestParams.EnumParam { @SerializedName("off_session") OFF_SESSION("off_session"), @SerializedName("on_session") ON_SESSION("on_session"); @Getter(onMethod_ = {@Override}) private final String value; SetupFutureUsage(String value) { this.value = value; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy