Class TokenCreateParams.BankAccount.Builder

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

public static class TokenCreateParams.BankAccount.Builder extends Object
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • build

      Finalize and obtain parameter instance from this builder.
    • setAccountHolderName

      public TokenCreateParams.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 a Customer object.
    • setAccountHolderType

      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.
    • setAccountNumber

      public TokenCreateParams.BankAccount.Builder setAccountNumber(String accountNumber)
      Required. The account number for the bank account, in string form. Must be a checking account.
    • setAccountType

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

      public TokenCreateParams.BankAccount.Builder setCountry(String country)
      Required. The country in which the bank account is located.
    • setCurrency

      public TokenCreateParams.BankAccount.Builder setCurrency(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(String key, 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. See TokenCreateParams.BankAccount.extraParams for the field documentation.
    • putAllExtraParam

      public TokenCreateParams.BankAccount.Builder putAllExtraParam(Map<String,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. See TokenCreateParams.BankAccount.extraParams for the field documentation.
    • setPaymentMethod

      public TokenCreateParams.BankAccount.Builder setPaymentMethod(String paymentMethod)
      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.
    • setRoutingNumber

      public TokenCreateParams.BankAccount.Builder setRoutingNumber(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.