Class TokenCreateParams.BankAccount

java.lang.Object
com.stripe.param.TokenCreateParams.BankAccount
Enclosing class:
TokenCreateParams

public static class TokenCreateParams.BankAccount extends Object
  • Method Details

    • builder

      public static TokenCreateParams.BankAccount.Builder builder()
    • getAccountHolderName

      public String getAccountHolderName()
      The name of the person or business that owns the bank account. This field is required when attaching the bank account to a Customer object.
    • getAccountHolderType

      public TokenCreateParams.BankAccount.AccountHolderType getAccountHolderType()
      The type of entity that holds the account. It can be company or individual. This field is required when attaching the bank account to a Customer object.
    • getAccountNumber

      public String getAccountNumber()
      Required. The account number for the bank account, in string form. Must be a checking account.
    • getAccountType

      The bank account type. This can only be checking or savings in most countries. In Japan, this can only be futsu or toza.
    • getCountry

      public String getCountry()
      Required. The country in which the bank account is located.
    • getCurrency

      public String getCurrency()
      The currency the bank account is in. This must be a country/currency pairing that Stripe supports.
    • getExtraParams

      public Map<String,Object> 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.
    • getPaymentMethod

      public String getPaymentMethod()
      The ID of a Payment Method with a type of us_bank_account. The Payment Method's bank account information will be copied and returned as a Bank Account Token. This parameter is exclusive with respect to all other parameters in the bank_account hash. You must include the top-level customer parameter if the Payment Method is attached to a Customer object. If the Payment Method is not attached to a Customer object, it will be consumed and cannot be used again. You may not use Payment Methods which were created by a Setup Intent with attach_to_self=true.
    • getRoutingNumber

      public String 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.