Package com.stripe.param
Class AccountExternalAccountCreateParams.BankAccount
java.lang.Object
com.stripe.param.AccountExternalAccountCreateParams.BankAccount
- Enclosing class:
- AccountExternalAccountCreateParams
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
static class
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the person or business that owns the bank account.This field is required when attaching the bank account to aCustomer
object.The type of entity that holds the account.Required. The account number for the bank account, in string form.Required. The country in which the bank account is located.The currency the bank account is in.Map of extra parameters for custom features not available in this client library.Required.The routing number, sort code, or other country-appropriateinstitution number for the bank account.
-
Method Details
-
builder
-
getAccountHolderName
The name of the person or business that owns the bank account.This field is required when attaching the bank account to aCustomer
object. -
getAccountHolderType
The type of entity that holds the account. It can becompany
orindividual
. This field is required when attaching the bank account to aCustomer
object. -
getAccountNumber
Required. The account number for the bank account, in string form. Must be a checking account. -
getCountry
Required. The country in which the bank account is located. -
getCurrency
The currency the bank account is in. This must be a country/currency pairing that Stripe supports. -
getExtraParams
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@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. -
getObject
Required. -
getRoutingNumber
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.
-