Package com.stripe.param
Class TokenCreateParams.BankAccount.Builder
- java.lang.Object
-
- com.stripe.param.TokenCreateParams.BankAccount.Builder
-
- Enclosing class:
- TokenCreateParams.BankAccount
public static class TokenCreateParams.BankAccount.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenCreateParams.BankAccountbuild()Finalize and obtain parameter instance from this builder.TokenCreateParams.BankAccount.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.TokenCreateParams.BankAccount.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.TokenCreateParams.BankAccount.BuildersetAccountHolderName(java.lang.String accountHolderName)The name of the person or business that owns the bank account.This field is required when attaching the bank account to aCustomerobject.TokenCreateParams.BankAccount.BuildersetAccountHolderType(TokenCreateParams.BankAccount.AccountHolderType accountHolderType)The type of entity that holds the account.TokenCreateParams.BankAccount.BuildersetAccountNumber(java.lang.String accountNumber)The account number for the bank account, in string form.TokenCreateParams.BankAccount.BuildersetCountry(java.lang.String country)The country in which the bank account is located.TokenCreateParams.BankAccount.BuildersetCurrency(java.lang.String currency)The currency the bank account is in.TokenCreateParams.BankAccount.BuildersetRoutingNumber(java.lang.String routingNumber)The routing number, sort code, or other country-appropriateinstitution number for the bank account.
-
-
-
Method Detail
-
build
public TokenCreateParams.BankAccount build()
Finalize and obtain parameter instance from this builder.
-
setAccountHolderName
public TokenCreateParams.BankAccount.Builder setAccountHolderName(java.lang.String accountHolderName)
The name of the person or business that owns the bank account.This field is required when attaching the bank account to aCustomerobject.
-
setAccountHolderType
public TokenCreateParams.BankAccount.Builder setAccountHolderType(TokenCreateParams.BankAccount.AccountHolderType accountHolderType)
The type of entity that holds the account. It can becompanyorindividual. This field is required when attaching the bank account to aCustomerobject.
-
setAccountNumber
public TokenCreateParams.BankAccount.Builder setAccountNumber(java.lang.String accountNumber)
The account number for the bank account, in string form. Must be a checking account.
-
setCountry
public TokenCreateParams.BankAccount.Builder setCountry(java.lang.String country)
The country in which the bank account is located.
-
setCurrency
public TokenCreateParams.BankAccount.Builder setCurrency(java.lang.String currency)
The currency the bank account is in. This must be a country/currency pairing that Stripe supports.
-
putExtraParam
public TokenCreateParams.BankAccount.Builder putExtraParam(java.lang.String key, java.lang.Object value)
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeTokenCreateParams.BankAccount.extraParamsfor the field documentation.
-
putAllExtraParam
public TokenCreateParams.BankAccount.Builder putAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeTokenCreateParams.BankAccount.extraParamsfor the field documentation.
-
setRoutingNumber
public TokenCreateParams.BankAccount.Builder setRoutingNumber(java.lang.String routingNumber)
The routing number, sort code, or other country-appropriateinstitution number for the bank account. For US bank accounts, this is required and should bethe ACH routing number, not the wire routing number. If you are providing an IBAN foraccount_number, this field is not required.
-
-