Package com.stripe.param
Class ExternalAccountCreateParams.BankAccount.Builder
java.lang.Object
com.stripe.param.ExternalAccountCreateParams.BankAccount.Builder
- Enclosing class:
- ExternalAccountCreateParams.BankAccount
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setAccountHolderName
(String accountHolderName) The name of the person or business that owns the bank account.This field is required when attaching the bank account to aCustomer
object.setAccountHolderType
(ExternalAccountCreateParams.BankAccount.AccountHolderType accountHolderType) The type of entity that holds the account.setAccountNumber
(String accountNumber) Required. The account number for the bank account, in string form.setCountry
(String country) Required. The country in which the bank account is located.setCurrency
(String currency) The currency the bank account is in.Required.setRoutingNumber
(String routingNumber) The routing number, sort code, or other country-appropriate institution number for the bank account.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAccountHolderName
public ExternalAccountCreateParams.BankAccount.Builder setAccountHolderName(String accountHolderName) The name of the person or business that owns the bank account.This field is required when attaching the bank account to aCustomer
object. -
setAccountHolderType
public ExternalAccountCreateParams.BankAccount.Builder setAccountHolderType(ExternalAccountCreateParams.BankAccount.AccountHolderType accountHolderType) The type of entity that holds the account. It can becompany
orindividual
. This field is required when attaching the bank account to aCustomer
object. -
setAccountNumber
Required. The account number for the bank account, in string form. Must be a checking account. -
setCountry
Required. The country in which the bank account is located. -
setCurrency
The currency the bank account is in. This must be a country/currency pairing that Stripe supports. -
putExtraParam
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. SeeExternalAccountCreateParams.BankAccount.extraParams
for the field documentation. -
putAllExtraParam
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. SeeExternalAccountCreateParams.BankAccount.extraParams
for the field documentation. -
setObject
Required. -
setRoutingNumber
The routing number, sort code, or other country-appropriate institution number for the bank account. For US bank accounts, this is required and should be the ACH routing number, not the wire routing number. If you are providing an IBAN foraccount_number
, this field is not required.
-