
com.stripe.param.SetupIntentUpdateParams Maven / Gradle / Ivy
// 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 SetupIntentUpdateParams extends ApiRequestParams {
/**
* If present, the SetupIntent's payment method will be attached to the in-context Stripe Account.
*
* It can only be used for this Stripe Account’s own money movement flows like InboundTransfer
* and OutboundTransfers. It cannot be set to true when setting up a PaymentMethod for a Customer,
* and defaults to false when attaching a PaymentMethod to a Customer.
*/
@SerializedName("attach_to_self")
Boolean attachToSelf;
/**
* ID of the Customer this SetupIntent belongs to, if one exists.
*
*
If present, the SetupIntent's payment method will be attached to the Customer on successful
* setup. Payment methods attached to other Customers cannot be used with this SetupIntent.
*/
@SerializedName("customer")
Object customer;
/** An arbitrary string attached to the object. Often useful for displaying to users. */
@SerializedName("description")
Object description;
/** 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;
/**
* Indicates the directions of money movement for which this payment method is intended to be
* used.
*
* Include {@code inbound} if you intend to use the payment method as the origin to pull funds
* from. Include {@code outbound} if you intend to use the payment method as the destination to
* send funds to. You can include both if you intend to use the payment method for both purposes.
*/
@SerializedName("flow_directions")
List flowDirections;
/**
* 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")
Object metadata;
/**
* ID of the payment method (a PaymentMethod, Card, or saved Source object) to attach to this
* SetupIntent. To unset this field to null, pass in an empty string.
*/
@SerializedName("payment_method")
Object paymentMethod;
/**
* The ID of the payment
* method configuration to use with this SetupIntent.
*/
@SerializedName("payment_method_configuration")
Object paymentMethodConfiguration;
/**
* When included, this hash creates a PaymentMethod that is set as the {@code
* payment_method} value in the SetupIntent.
*/
@SerializedName("payment_method_data")
PaymentMethodData paymentMethodData;
/** Payment method-specific configuration for this SetupIntent. */
@SerializedName("payment_method_options")
PaymentMethodOptions paymentMethodOptions;
/**
* The list of payment method types (for example, card) that this SetupIntent can set up. If you
* don't provide this, Stripe will dynamically show relevant payment methods from your payment method settings.
*/
@SerializedName("payment_method_types")
List paymentMethodTypes;
private SetupIntentUpdateParams(
Boolean attachToSelf,
Object customer,
Object description,
List expand,
Map extraParams,
List flowDirections,
Object metadata,
Object paymentMethod,
Object paymentMethodConfiguration,
PaymentMethodData paymentMethodData,
PaymentMethodOptions paymentMethodOptions,
List paymentMethodTypes) {
this.attachToSelf = attachToSelf;
this.customer = customer;
this.description = description;
this.expand = expand;
this.extraParams = extraParams;
this.flowDirections = flowDirections;
this.metadata = metadata;
this.paymentMethod = paymentMethod;
this.paymentMethodConfiguration = paymentMethodConfiguration;
this.paymentMethodData = paymentMethodData;
this.paymentMethodOptions = paymentMethodOptions;
this.paymentMethodTypes = paymentMethodTypes;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Boolean attachToSelf;
private Object customer;
private Object description;
private List expand;
private Map extraParams;
private List flowDirections;
private Object metadata;
private Object paymentMethod;
private Object paymentMethodConfiguration;
private PaymentMethodData paymentMethodData;
private PaymentMethodOptions paymentMethodOptions;
private List paymentMethodTypes;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams build() {
return new SetupIntentUpdateParams(
this.attachToSelf,
this.customer,
this.description,
this.expand,
this.extraParams,
this.flowDirections,
this.metadata,
this.paymentMethod,
this.paymentMethodConfiguration,
this.paymentMethodData,
this.paymentMethodOptions,
this.paymentMethodTypes);
}
/**
* If present, the SetupIntent's payment method will be attached to the in-context Stripe
* Account.
*
* It can only be used for this Stripe Account’s own money movement flows like
* InboundTransfer and OutboundTransfers. It cannot be set to true when setting up a
* PaymentMethod for a Customer, and defaults to false when attaching a PaymentMethod to a
* Customer.
*/
public Builder setAttachToSelf(Boolean attachToSelf) {
this.attachToSelf = attachToSelf;
return this;
}
/**
* ID of the Customer this SetupIntent belongs to, if one exists.
*
*
If present, the SetupIntent's payment method will be attached to the Customer on
* successful setup. Payment methods attached to other Customers cannot be used with this
* SetupIntent.
*/
public Builder setCustomer(String customer) {
this.customer = customer;
return this;
}
/**
* ID of the Customer this SetupIntent belongs to, if one exists.
*
*
If present, the SetupIntent's payment method will be attached to the Customer on
* successful setup. Payment methods attached to other Customers cannot be used with this
* SetupIntent.
*/
public Builder setCustomer(EmptyParam customer) {
this.customer = customer;
return this;
}
/** An arbitrary string attached to the object. Often useful for displaying to users. */
public Builder setDescription(String description) {
this.description = description;
return this;
}
/** An arbitrary string attached to the object. Often useful for displaying to users. */
public Builder setDescription(EmptyParam description) {
this.description = description;
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
* SetupIntentUpdateParams#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
* SetupIntentUpdateParams#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
* SetupIntentUpdateParams#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 SetupIntentUpdateParams#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 `flowDirections` list. A list is initialized for the first `add/addAll`
* call, and subsequent calls adds additional elements to the original list. See {@link
* SetupIntentUpdateParams#flowDirections} for the field documentation.
*/
public Builder addFlowDirection(SetupIntentUpdateParams.FlowDirection element) {
if (this.flowDirections == null) {
this.flowDirections = new ArrayList<>();
}
this.flowDirections.add(element);
return this;
}
/**
* Add all elements to `flowDirections` list. A list is initialized for the first `add/addAll`
* call, and subsequent calls adds additional elements to the original list. See {@link
* SetupIntentUpdateParams#flowDirections} for the field documentation.
*/
public Builder addAllFlowDirection(List elements) {
if (this.flowDirections == null) {
this.flowDirections = new ArrayList<>();
}
this.flowDirections.addAll(elements);
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
* SetupIntentUpdateParams#metadata} for the field documentation.
*/
@SuppressWarnings("unchecked")
public Builder putMetadata(String key, String value) {
if (this.metadata == null || this.metadata instanceof EmptyParam) {
this.metadata = new HashMap();
}
((Map) 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 SetupIntentUpdateParams#metadata} for the field documentation.
*/
@SuppressWarnings("unchecked")
public Builder putAllMetadata(Map map) {
if (this.metadata == null || this.metadata instanceof EmptyParam) {
this.metadata = new HashMap();
}
((Map) this.metadata).putAll(map);
return this;
}
/**
* 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}.
*/
public Builder setMetadata(EmptyParam metadata) {
this.metadata = metadata;
return this;
}
/**
* 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}.
*/
public Builder setMetadata(Map metadata) {
this.metadata = metadata;
return this;
}
/**
* ID of the payment method (a PaymentMethod, Card, or saved Source object) to attach to this
* SetupIntent. To unset this field to null, pass in an empty string.
*/
public Builder setPaymentMethod(String paymentMethod) {
this.paymentMethod = paymentMethod;
return this;
}
/**
* ID of the payment method (a PaymentMethod, Card, or saved Source object) to attach to this
* SetupIntent. To unset this field to null, pass in an empty string.
*/
public Builder setPaymentMethod(EmptyParam paymentMethod) {
this.paymentMethod = paymentMethod;
return this;
}
/**
* The ID of the payment
* method configuration to use with this SetupIntent.
*/
public Builder setPaymentMethodConfiguration(String paymentMethodConfiguration) {
this.paymentMethodConfiguration = paymentMethodConfiguration;
return this;
}
/**
* The ID of the payment
* method configuration to use with this SetupIntent.
*/
public Builder setPaymentMethodConfiguration(EmptyParam paymentMethodConfiguration) {
this.paymentMethodConfiguration = paymentMethodConfiguration;
return this;
}
/**
* When included, this hash creates a PaymentMethod that is set as the {@code
* payment_method} value in the SetupIntent.
*/
public Builder setPaymentMethodData(
SetupIntentUpdateParams.PaymentMethodData paymentMethodData) {
this.paymentMethodData = paymentMethodData;
return this;
}
/** Payment method-specific configuration for this SetupIntent. */
public Builder setPaymentMethodOptions(
SetupIntentUpdateParams.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
* SetupIntentUpdateParams#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 SetupIntentUpdateParams#paymentMethodTypes} for the field documentation.
*/
public Builder addAllPaymentMethodType(List elements) {
if (this.paymentMethodTypes == null) {
this.paymentMethodTypes = new ArrayList<>();
}
this.paymentMethodTypes.addAll(elements);
return this;
}
}
@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 Alma PaymentMethod, this hash contains details about the Alma payment method.
*/
@SerializedName("alma")
Alma alma;
/**
* 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 Gopay PaymentMethod, this hash contains details about the Gopay payment method.
*/
@SerializedName("gopay")
Gopay gopay;
/**
* 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 IdBankTransfer} PaymentMethod, this hash contains details about the
* IdBankTransfer payment method.
*/
@SerializedName("id_bank_transfer")
IdBankTransfer idBankTransfer;
/**
* 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 kakao_pay} PaymentMethod, this hash contains details about the Kakao Pay
* payment method.
*/
@SerializedName("kakao_pay")
KakaoPay kakaoPay;
/**
* 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 a {@code kr_card} PaymentMethod, this hash contains details about the Korean Card
* payment method.
*/
@SerializedName("kr_card")
KrCard krCard;
/**
* 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 a {@code naver_pay} PaymentMethod, this hash contains details about the Naver Pay
* payment method.
*/
@SerializedName("naver_pay")
NaverPay naverPay;
/**
* 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 payco} PaymentMethod, this hash contains details about the PAYCO payment
* method.
*/
@SerializedName("payco")
Payco payco;
/**
* 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;
/**
* If this is a {@code qris} PaymentMethod, this hash contains details about the QRIS payment
* method.
*/
@SerializedName("qris")
Qris qris;
/**
* 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 samsung_pay} PaymentMethod, this hash contains details about the
* SamsungPay payment method.
*/
@SerializedName("samsung_pay")
SamsungPay samsungPay;
/**
* 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 Shopeepay PaymentMethod, this hash contains details about the Shopeepay payment
* method.
*/
@SerializedName("shopeepay")
Shopeepay shopeepay;
/**
* 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,
Alma alma,
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,
Gopay gopay,
Grabpay grabpay,
IdBankTransfer idBankTransfer,
Ideal ideal,
InteracPresent interacPresent,
KakaoPay kakaoPay,
Klarna klarna,
Konbini konbini,
KrCard krCard,
Link link,
MbWay mbWay,
Map metadata,
Mobilepay mobilepay,
Multibanco multibanco,
NaverPay naverPay,
Oxxo oxxo,
P24 p24,
Payco payco,
Paynow paynow,
Paypal paypal,
Payto payto,
Pix pix,
Promptpay promptpay,
Qris qris,
RadarOptions radarOptions,
Rechnung rechnung,
RevolutPay revolutPay,
SamsungPay samsungPay,
SepaDebit sepaDebit,
Shopeepay shopeepay,
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.alma = alma;
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.gopay = gopay;
this.grabpay = grabpay;
this.idBankTransfer = idBankTransfer;
this.ideal = ideal;
this.interacPresent = interacPresent;
this.kakaoPay = kakaoPay;
this.klarna = klarna;
this.konbini = konbini;
this.krCard = krCard;
this.link = link;
this.mbWay = mbWay;
this.metadata = metadata;
this.mobilepay = mobilepay;
this.multibanco = multibanco;
this.naverPay = naverPay;
this.oxxo = oxxo;
this.p24 = p24;
this.payco = payco;
this.paynow = paynow;
this.paypal = paypal;
this.payto = payto;
this.pix = pix;
this.promptpay = promptpay;
this.qris = qris;
this.radarOptions = radarOptions;
this.rechnung = rechnung;
this.revolutPay = revolutPay;
this.samsungPay = samsungPay;
this.sepaDebit = sepaDebit;
this.shopeepay = shopeepay;
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 Alma alma;
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 Gopay gopay;
private Grabpay grabpay;
private IdBankTransfer idBankTransfer;
private Ideal ideal;
private InteracPresent interacPresent;
private KakaoPay kakaoPay;
private Klarna klarna;
private Konbini konbini;
private KrCard krCard;
private Link link;
private MbWay mbWay;
private Map metadata;
private Mobilepay mobilepay;
private Multibanco multibanco;
private NaverPay naverPay;
private Oxxo oxxo;
private P24 p24;
private Payco payco;
private Paynow paynow;
private Paypal paypal;
private Payto payto;
private Pix pix;
private Promptpay promptpay;
private Qris qris;
private RadarOptions radarOptions;
private Rechnung rechnung;
private RevolutPay revolutPay;
private SamsungPay samsungPay;
private SepaDebit sepaDebit;
private Shopeepay shopeepay;
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 SetupIntentUpdateParams.PaymentMethodData build() {
return new SetupIntentUpdateParams.PaymentMethodData(
this.acssDebit,
this.affirm,
this.afterpayClearpay,
this.alipay,
this.allowRedisplay,
this.alma,
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.gopay,
this.grabpay,
this.idBankTransfer,
this.ideal,
this.interacPresent,
this.kakaoPay,
this.klarna,
this.konbini,
this.krCard,
this.link,
this.mbWay,
this.metadata,
this.mobilepay,
this.multibanco,
this.naverPay,
this.oxxo,
this.p24,
this.payco,
this.paynow,
this.paypal,
this.payto,
this.pix,
this.promptpay,
this.qris,
this.radarOptions,
this.rechnung,
this.revolutPay,
this.samsungPay,
this.sepaDebit,
this.shopeepay,
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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.PaymentMethodData.AllowRedisplay allowRedisplay) {
this.allowRedisplay = allowRedisplay;
return this;
}
/**
* If this is a Alma PaymentMethod, this hash contains details about the Alma payment method.
*/
public Builder setAlma(SetupIntentUpdateParams.PaymentMethodData.Alma alma) {
this.alma = alma;
return this;
}
/**
* If this is a AmazonPay PaymentMethod, this hash contains details about the AmazonPay
* payment method.
*/
public Builder setAmazonPay(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.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(
SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.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(SetupIntentUpdateParams.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
* SetupIntentUpdateParams.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 SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.PaymentMethodData.Giropay giropay) {
this.giropay = giropay;
return this;
}
/**
* If this is a Gopay PaymentMethod, this hash contains details about the Gopay payment
* method.
*/
public Builder setGopay(SetupIntentUpdateParams.PaymentMethodData.Gopay gopay) {
this.gopay = gopay;
return this;
}
/**
* If this is a {@code grabpay} PaymentMethod, this hash contains details about the GrabPay
* payment method.
*/
public Builder setGrabpay(SetupIntentUpdateParams.PaymentMethodData.Grabpay grabpay) {
this.grabpay = grabpay;
return this;
}
/**
* If this is an {@code IdBankTransfer} PaymentMethod, this hash contains details about the
* IdBankTransfer payment method.
*/
public Builder setIdBankTransfer(
SetupIntentUpdateParams.PaymentMethodData.IdBankTransfer idBankTransfer) {
this.idBankTransfer = idBankTransfer;
return this;
}
/**
* If this is an {@code ideal} PaymentMethod, this hash contains details about the iDEAL
* payment method.
*/
public Builder setIdeal(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.PaymentMethodData.InteracPresent interacPresent) {
this.interacPresent = interacPresent;
return this;
}
/**
* If this is a {@code kakao_pay} PaymentMethod, this hash contains details about the Kakao
* Pay payment method.
*/
public Builder setKakaoPay(SetupIntentUpdateParams.PaymentMethodData.KakaoPay kakaoPay) {
this.kakaoPay = kakaoPay;
return this;
}
/**
* If this is a {@code klarna} PaymentMethod, this hash contains details about the Klarna
* payment method.
*/
public Builder setKlarna(SetupIntentUpdateParams.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(SetupIntentUpdateParams.PaymentMethodData.Konbini konbini) {
this.konbini = konbini;
return this;
}
/**
* If this is a {@code kr_card} PaymentMethod, this hash contains details about the Korean
* Card payment method.
*/
public Builder setKrCard(SetupIntentUpdateParams.PaymentMethodData.KrCard krCard) {
this.krCard = krCard;
return this;
}
/**
* If this is an {@code Link} PaymentMethod, this hash contains details about the Link payment
* method.
*/
public Builder setLink(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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
* SetupIntentUpdateParams.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 SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.PaymentMethodData.Multibanco multibanco) {
this.multibanco = multibanco;
return this;
}
/**
* If this is a {@code naver_pay} PaymentMethod, this hash contains details about the Naver
* Pay payment method.
*/
public Builder setNaverPay(SetupIntentUpdateParams.PaymentMethodData.NaverPay naverPay) {
this.naverPay = naverPay;
return this;
}
/**
* If this is an {@code oxxo} PaymentMethod, this hash contains details about the OXXO payment
* method.
*/
public Builder setOxxo(SetupIntentUpdateParams.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(SetupIntentUpdateParams.PaymentMethodData.P24 p24) {
this.p24 = p24;
return this;
}
/**
* If this is a {@code payco} PaymentMethod, this hash contains details about the PAYCO
* payment method.
*/
public Builder setPayco(SetupIntentUpdateParams.PaymentMethodData.Payco payco) {
this.payco = payco;
return this;
}
/**
* If this is a {@code paynow} PaymentMethod, this hash contains details about the PayNow
* payment method.
*/
public Builder setPaynow(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.PaymentMethodData.Promptpay promptpay) {
this.promptpay = promptpay;
return this;
}
/**
* If this is a {@code qris} PaymentMethod, this hash contains details about the QRIS payment
* method.
*/
public Builder setQris(SetupIntentUpdateParams.PaymentMethodData.Qris qris) {
this.qris = qris;
return this;
}
/**
* Options to configure Radar. See Radar
* Session for more information.
*/
public Builder setRadarOptions(
SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.PaymentMethodData.RevolutPay revolutPay) {
this.revolutPay = revolutPay;
return this;
}
/**
* If this is a {@code samsung_pay} PaymentMethod, this hash contains details about the
* SamsungPay payment method.
*/
public Builder setSamsungPay(
SetupIntentUpdateParams.PaymentMethodData.SamsungPay samsungPay) {
this.samsungPay = samsungPay;
return this;
}
/**
* If this is a {@code sepa_debit} PaymentMethod, this hash contains details about the SEPA
* debit bank account.
*/
public Builder setSepaDebit(SetupIntentUpdateParams.PaymentMethodData.SepaDebit sepaDebit) {
this.sepaDebit = sepaDebit;
return this;
}
/**
* If this is a Shopeepay PaymentMethod, this hash contains details about the Shopeepay
* payment method.
*/
public Builder setShopeepay(SetupIntentUpdateParams.PaymentMethodData.Shopeepay shopeepay) {
this.shopeepay = shopeepay;
return this;
}
/**
* If this is a {@code sofort} PaymentMethod, this hash contains details about the SOFORT
* payment method.
*/
public Builder setSofort(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(
SetupIntentUpdateParams.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(SetupIntentUpdateParams.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(SetupIntentUpdateParams.PaymentMethodData.Zip zip) {
this.zip = zip;
return this;
}
}
@Getter
public static class AcssDebit {
/** Required. Customer's bank account number. */
@SerializedName("account_number")
Object 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")
Object institutionNumber;
/** Required. Transit number of the customer's bank. */
@SerializedName("transit_number")
Object transitNumber;
private AcssDebit(
Object accountNumber,
Map extraParams,
Object institutionNumber,
Object 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 Object accountNumber;
private Map extraParams;
private Object institutionNumber;
private Object transitNumber;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.AcssDebit build() {
return new SetupIntentUpdateParams.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;
}
/** Required. Customer's bank account number. */
public Builder setAccountNumber(EmptyParam 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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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. Institution number of the customer's bank. */
public Builder setInstitutionNumber(EmptyParam institutionNumber) {
this.institutionNumber = institutionNumber;
return this;
}
/** Required. Transit number of the customer's bank. */
public Builder setTransitNumber(String transitNumber) {
this.transitNumber = transitNumber;
return this;
}
/** Required. Transit number of the customer's bank. */
public Builder setTransitNumber(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.Affirm build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.AfterpayClearpay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Alipay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 Alma {
/**
* 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 Alma(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 SetupIntentUpdateParams.PaymentMethodData.Alma build() {
return new SetupIntentUpdateParams.PaymentMethodData.Alma(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 SetupIntentUpdateParams.PaymentMethodData.Alma#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 SetupIntentUpdateParams.PaymentMethodData.Alma#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 SetupIntentUpdateParams.PaymentMethodData.AmazonPay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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")
Object accountNumber;
/** Required. Bank-State-Branch number of the bank account. */
@SerializedName("bsb_number")
Object 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(Object accountNumber, Object bsbNumber, Map extraParams) {
this.accountNumber = accountNumber;
this.bsbNumber = bsbNumber;
this.extraParams = extraParams;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Object accountNumber;
private Object bsbNumber;
private Map extraParams;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.AuBecsDebit build() {
return new SetupIntentUpdateParams.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. The account number for the bank account. */
public Builder setAccountNumber(EmptyParam 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;
}
/** Required. Bank-State-Branch number of the bank account. */
public Builder setBsbNumber(EmptyParam 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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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")
Object 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")
Object sortCode;
private BacsDebit(Object accountNumber, Map extraParams, Object sortCode) {
this.accountNumber = accountNumber;
this.extraParams = extraParams;
this.sortCode = sortCode;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Object accountNumber;
private Map extraParams;
private Object sortCode;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.BacsDebit build() {
return new SetupIntentUpdateParams.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;
}
/** Account number of the bank account that the funds will be debited from. */
public Builder setAccountNumber(EmptyParam 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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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;
}
/** Sort code of the bank account. (e.g., {@code 10-20-30}) */
public Builder setSortCode(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.Bancontact build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.BillingDetails build() {
return new SetupIntentUpdateParams.PaymentMethodData.BillingDetails(
this.address, this.email, this.extraParams, this.name, this.phone);
}
/** Billing address. */
public Builder setAddress(
SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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")
Object city;
/**
* Two-letter country code (ISO
* 3166-1 alpha-2).
*/
@SerializedName("country")
Object 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")
Object line1;
/** Address line 2 (e.g., apartment, suite, unit, or building). */
@SerializedName("line2")
Object line2;
/** ZIP or postal code. */
@SerializedName("postal_code")
Object postalCode;
/** State, county, province, or region. */
@SerializedName("state")
Object state;
private Address(
Object city,
Object country,
Map extraParams,
Object line1,
Object line2,
Object postalCode,
Object 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 Object city;
private Object country;
private Map extraParams;
private Object line1;
private Object line2;
private Object postalCode;
private Object state;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.BillingDetails.Address build() {
return new SetupIntentUpdateParams.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;
}
/** City, district, suburb, town, or village. */
public Builder setCity(EmptyParam 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;
}
/**
* Two-letter country code (ISO
* 3166-1 alpha-2).
*/
public Builder setCountry(EmptyParam 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
* SetupIntentUpdateParams.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
* SetupIntentUpdateParams.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 1 (e.g., street, PO Box, or company name). */
public Builder setLine1(EmptyParam 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;
}
/** Address line 2 (e.g., apartment, suite, unit, or building). */
public Builder setLine2(EmptyParam line2) {
this.line2 = line2;
return this;
}
/** ZIP or postal code. */
public Builder setPostalCode(String postalCode) {
this.postalCode = postalCode;
return this;
}
/** ZIP or postal code. */
public Builder setPostalCode(EmptyParam postalCode) {
this.postalCode = postalCode;
return this;
}
/** State, county, province, or region. */
public Builder setState(String state) {
this.state = state;
return this;
}
/** State, county, province, or region. */
public Builder setState(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.Blik build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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")
Object taxId;
private Boleto(Map extraParams, Object taxId) {
this.extraParams = extraParams;
this.taxId = taxId;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Map extraParams;
private Object taxId;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.Boleto build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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;
}
/**
* Required. The tax ID of the customer (CPF for individual consumers or
* CNPJ for businesses consumers)
*/
public Builder setTaxId(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.Cashapp build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.CustomerBalance build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Eps build() {
return new SetupIntentUpdateParams.PaymentMethodData.Eps(this.bank, this.extraParams);
}
/** The customer's bank. */
public Builder setBank(SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Fpx build() {
return new SetupIntentUpdateParams.PaymentMethodData.Fpx(
this.accountHolderType, this.bank, this.extraParams);
}
/** Account holder type for FPX transaction. */
public Builder setAccountHolderType(
SetupIntentUpdateParams.PaymentMethodData.Fpx.AccountHolderType accountHolderType) {
this.accountHolderType = accountHolderType;
return this;
}
/** Required. The customer's bank. */
public Builder setBank(SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Giropay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 Gopay {
/**
* 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 Gopay(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 SetupIntentUpdateParams.PaymentMethodData.Gopay build() {
return new SetupIntentUpdateParams.PaymentMethodData.Gopay(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 SetupIntentUpdateParams.PaymentMethodData.Gopay#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 SetupIntentUpdateParams.PaymentMethodData.Gopay#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 SetupIntentUpdateParams.PaymentMethodData.Grabpay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 IdBankTransfer {
/** Bank where the account is held. */
@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 IdBankTransfer(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 SetupIntentUpdateParams.PaymentMethodData.IdBankTransfer build() {
return new SetupIntentUpdateParams.PaymentMethodData.IdBankTransfer(
this.bank, this.extraParams);
}
/** Bank where the account is held. */
public Builder setBank(SetupIntentUpdateParams.PaymentMethodData.IdBankTransfer.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 SetupIntentUpdateParams.PaymentMethodData.IdBankTransfer#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 SetupIntentUpdateParams.PaymentMethodData.IdBankTransfer#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("bca")
BCA("bca"),
@SerializedName("bni")
BNI("bni"),
@SerializedName("bri")
BRI("bri"),
@SerializedName("cimb")
CIMB("cimb"),
@SerializedName("permata")
PERMATA("permata");
@Getter(onMethod_ = {@Override})
private final String value;
Bank(String value) {
this.value = value;
}
}
}
@Getter
public static class Ideal {
/**
* The customer's bank. Only use this parameter for existing customers. Don't use it for new
* customers.
*/
@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 SetupIntentUpdateParams.PaymentMethodData.Ideal build() {
return new SetupIntentUpdateParams.PaymentMethodData.Ideal(this.bank, this.extraParams);
}
/**
* The customer's bank. Only use this parameter for existing customers. Don't use it for new
* customers.
*/
public Builder setBank(SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.InteracPresent build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 KakaoPay {
/**
* 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 KakaoPay(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 SetupIntentUpdateParams.PaymentMethodData.KakaoPay build() {
return new SetupIntentUpdateParams.PaymentMethodData.KakaoPay(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 SetupIntentUpdateParams.PaymentMethodData.KakaoPay#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 SetupIntentUpdateParams.PaymentMethodData.KakaoPay#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 SetupIntentUpdateParams.PaymentMethodData.Klarna build() {
return new SetupIntentUpdateParams.PaymentMethodData.Klarna(this.dob, this.extraParams);
}
/** Customer's date of birth. */
public Builder setDob(SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Klarna.Dob build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Konbini build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 KrCard {
/**
* 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 KrCard(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 SetupIntentUpdateParams.PaymentMethodData.KrCard build() {
return new SetupIntentUpdateParams.PaymentMethodData.KrCard(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 SetupIntentUpdateParams.PaymentMethodData.KrCard#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 SetupIntentUpdateParams.PaymentMethodData.KrCard#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 SetupIntentUpdateParams.PaymentMethodData.Link build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.MbWay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Mobilepay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Multibanco build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 NaverPay {
/**
* 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;
/**
* Whether to use Naver Pay points or a card to fund this transaction. If not provided, this
* defaults to {@code card}.
*/
@SerializedName("funding")
Funding funding;
private NaverPay(Map extraParams, Funding funding) {
this.extraParams = extraParams;
this.funding = funding;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Map extraParams;
private Funding funding;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.NaverPay build() {
return new SetupIntentUpdateParams.PaymentMethodData.NaverPay(
this.extraParams, this.funding);
}
/**
* 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 SetupIntentUpdateParams.PaymentMethodData.NaverPay#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 SetupIntentUpdateParams.PaymentMethodData.NaverPay#extraParams} for the
* field documentation.
*/
public Builder putAllExtraParam(Map map) {
if (this.extraParams == null) {
this.extraParams = new HashMap<>();
}
this.extraParams.putAll(map);
return this;
}
/**
* Whether to use Naver Pay points or a card to fund this transaction. If not provided, this
* defaults to {@code card}.
*/
public Builder setFunding(
SetupIntentUpdateParams.PaymentMethodData.NaverPay.Funding funding) {
this.funding = funding;
return this;
}
}
public enum Funding implements ApiRequestParams.EnumParam {
@SerializedName("card")
CARD("card"),
@SerializedName("points")
POINTS("points");
@Getter(onMethod_ = {@Override})
private final String value;
Funding(String value) {
this.value = value;
}
}
}
@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 SetupIntentUpdateParams.PaymentMethodData.Oxxo build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.P24 build() {
return new SetupIntentUpdateParams.PaymentMethodData.P24(this.bank, this.extraParams);
}
/** The customer's bank. */
public Builder setBank(SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 Payco {
/**
* 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 Payco(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 SetupIntentUpdateParams.PaymentMethodData.Payco build() {
return new SetupIntentUpdateParams.PaymentMethodData.Payco(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 SetupIntentUpdateParams.PaymentMethodData.Payco#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 SetupIntentUpdateParams.PaymentMethodData.Payco#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 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 SetupIntentUpdateParams.PaymentMethodData.Paynow build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Paypal build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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")
Object accountNumber;
/** Bank-State-Branch number of the bank account. */
@SerializedName("bsb_number")
Object 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")
Object payId;
private Payto(
Object accountNumber, Object bsbNumber, Map extraParams, Object 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 Object accountNumber;
private Object bsbNumber;
private Map extraParams;
private Object payId;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.Payto build() {
return new SetupIntentUpdateParams.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;
}
/** The account number for the bank account. */
public Builder setAccountNumber(EmptyParam accountNumber) {
this.accountNumber = accountNumber;
return this;
}
/** Bank-State-Branch number of the bank account. */
public Builder setBsbNumber(String bsbNumber) {
this.bsbNumber = bsbNumber;
return this;
}
/** Bank-State-Branch number of the bank account. */
public Builder setBsbNumber(EmptyParam 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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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;
}
/** The PayID alias for the bank account. */
public Builder setPayId(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.Pix build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Promptpay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 Qris {
/**
* 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 Qris(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 SetupIntentUpdateParams.PaymentMethodData.Qris build() {
return new SetupIntentUpdateParams.PaymentMethodData.Qris(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 SetupIntentUpdateParams.PaymentMethodData.Qris#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 SetupIntentUpdateParams.PaymentMethodData.Qris#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")
Object session;
private RadarOptions(Map extraParams, Object session) {
this.extraParams = extraParams;
this.session = session;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Map extraParams;
private Object session;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.RadarOptions build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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;
}
/**
* 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(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.Rechnung build() {
return new SetupIntentUpdateParams.PaymentMethodData.Rechnung(this.dob, this.extraParams);
}
/** Required. Customer's date of birth */
public Builder setDob(SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Rechnung.Dob build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.RevolutPay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SamsungPay {
/**
* 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 SamsungPay(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 SetupIntentUpdateParams.PaymentMethodData.SamsungPay build() {
return new SetupIntentUpdateParams.PaymentMethodData.SamsungPay(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 SetupIntentUpdateParams.PaymentMethodData.SamsungPay#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 SetupIntentUpdateParams.PaymentMethodData.SamsungPay#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")
Object iban;
private SepaDebit(Map extraParams, Object iban) {
this.extraParams = extraParams;
this.iban = iban;
}
public static Builder builder() {
return new Builder();
}
public static class Builder {
private Map extraParams;
private Object iban;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.SepaDebit build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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;
}
/** Required. IBAN of the bank account. */
public Builder setIban(EmptyParam iban) {
this.iban = iban;
return this;
}
}
}
@Getter
public static class Shopeepay {
/**
* 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 Shopeepay(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 SetupIntentUpdateParams.PaymentMethodData.Shopeepay build() {
return new SetupIntentUpdateParams.PaymentMethodData.Shopeepay(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 SetupIntentUpdateParams.PaymentMethodData.Shopeepay#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 SetupIntentUpdateParams.PaymentMethodData.Shopeepay#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 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 SetupIntentUpdateParams.PaymentMethodData.Sofort build() {
return new SetupIntentUpdateParams.PaymentMethodData.Sofort(
this.country, this.extraParams);
}
/**
* Required. Two-letter ISO code representing the country the bank account
* is located in.
*/
public Builder setCountry(
SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Swish build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.PaymentMethodData.Twint build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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")
Object 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")
Object financialConnectionsAccount;
/** Routing number of the bank account. */
@SerializedName("routing_number")
Object routingNumber;
private UsBankAccount(
AccountHolderType accountHolderType,
Object accountNumber,
AccountType accountType,
Map extraParams,
Object financialConnectionsAccount,
Object 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 Object accountNumber;
private AccountType accountType;
private Map extraParams;
private Object financialConnectionsAccount;
private Object routingNumber;
/** Finalize and obtain parameter instance from this builder. */
public SetupIntentUpdateParams.PaymentMethodData.UsBankAccount build() {
return new SetupIntentUpdateParams.PaymentMethodData.UsBankAccount(
this.accountHolderType,
this.accountNumber,
this.accountType,
this.extraParams,
this.financialConnectionsAccount,
this.routingNumber);
}
/** Account holder type: individual or company. */
public Builder setAccountHolderType(
SetupIntentUpdateParams.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 number of the bank account. */
public Builder setAccountNumber(EmptyParam accountNumber) {
this.accountNumber = accountNumber;
return this;
}
/** Account type: checkings or savings. Defaults to checking if omitted. */
public Builder setAccountType(
SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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;
}
/** The ID of a Financial Connections Account to use as a payment method. */
public Builder setFinancialConnectionsAccount(EmptyParam financialConnectionsAccount) {
this.financialConnectionsAccount = financialConnectionsAccount;
return this;
}
/** Routing number of the bank account. */
public Builder setRoutingNumber(String routingNumber) {
this.routingNumber = routingNumber;
return this;
}
/** Routing number of the bank account. */
public Builder setRoutingNumber(EmptyParam 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 SetupIntentUpdateParams.PaymentMethodData.WechatPay build() {
return new SetupIntentUpdateParams.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 SetupIntentUpdateParams.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 SetupIntentUpdateParams.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