class Stripe::BankAccount
- Stripe::BankAccount
- Reference
- Object
Overview
These bank accounts are payment methods on Customer
objects. On the other hand External Accounts are transfer destinations on Account
objects for connected accounts. They can be bank accounts or debit cards as well, and are documented in the links above. Related guide: Bank debits and transfers
Included Modules
- JSON::Serializable
- JSON::Serializable::Unmapped
- OpenApi::Json
- OpenApi::Validatable
Defined in:
stripe/models/bank_account.crConstant Summary
-
ERROR_MESSAGE_FOR_AVAILABLE_PAYOUT_METHODS =
"invalid value for \"available_payout_methods\", must be one of [instant, standard]."
-
ERROR_MESSAGE_FOR_OBJECT =
"invalid value for \"object\", must be one of [bank_account]."
-
MAX_LENGTH_FOR_ACCOUNT_HOLDER_NAME =
5000
-
MAX_LENGTH_FOR_ACCOUNT_HOLDER_TYPE =
5000
-
MAX_LENGTH_FOR_ACCOUNT_TYPE =
5000
-
MAX_LENGTH_FOR_BANK_NAME =
5000
-
MAX_LENGTH_FOR_COUNTRY =
5000
-
MAX_LENGTH_FOR_FINGERPRINT =
5000
-
MAX_LENGTH_FOR_ID =
5000
-
MAX_LENGTH_FOR_LAST4 =
5000
-
MAX_LENGTH_FOR_ROUTING_NUMBER =
5000
-
MAX_LENGTH_FOR_STATUS =
5000
-
VALID_VALUES_FOR_AVAILABLE_PAYOUT_METHODS =
String.static_array("instant", "standard")
-
VALID_VALUES_FOR_OBJECT =
String.static_array("bank_account")
Constructors
- .new(pull : JSON::PullParser)
-
.new(*, account_holder_name : String | Nil = nil, account_holder_type : String | Nil = nil, account_type : String | Nil = nil, bank_name : String | Nil = nil, country : String | Nil = nil, currency : String | Nil = nil, fingerprint : String | Nil = nil, id : String | Nil = nil, last4 : String | Nil = nil, object : String | Nil = nil, routing_number : String | Nil = nil, status : String | Nil = nil, account : Stripe::BankAccountAccount | Nil = nil, available_payout_methods : Array(String) | Nil = nil, customer : Stripe::BankAccountCustomer | Nil = nil, default_for_currency : Bool | Nil = nil, future_requirements : Stripe::BankAccountFutureRequirements | Nil = nil, metadata : Hash(String, String) | Nil = nil, requirements : Stripe::BankAccountRequirements | Nil = nil)
Initializes the object @param [Hash] attributes Model attributes in the form of hash
Instance Method Summary
-
#==(other : self)
Generates #hash and #== methods from all fields #== @return [Bool] #hash calculates hash code according to all attributes.
- #account : Stripe::BankAccountAccount | Nil
-
#account=(new_value : Stripe::BankAccountAccount | Nil)
Custom attribute writer method checking allowed values (enum).
- #account_holder_name : String | Nil
-
#account_holder_name=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #account_holder_type : String | Nil
-
#account_holder_type=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #account_present=(account_present : Bool)
- #account_present? : Bool
- #account_type : String | Nil
-
#account_type=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #available_payout_methods : Array(String) | Nil
-
#available_payout_methods=(new_value : Array(String) | Nil)
Custom attribute writer method checking allowed values (enum).
- #available_payout_methods_present=(available_payout_methods_present : Bool)
- #available_payout_methods_present? : Bool
- #bank_name : String | Nil
-
#bank_name=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #country : String | Nil
-
#country=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #currency : String | Nil
-
#currency=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #customer : Stripe::BankAccountCustomer | Nil
-
#customer=(new_value : Stripe::BankAccountCustomer | Nil)
Custom attribute writer method checking allowed values (enum).
- #customer_present=(customer_present : Bool)
- #customer_present? : Bool
- #default_for_currency : Bool | Nil
-
#default_for_currency=(new_value : Bool | Nil)
Custom attribute writer method checking allowed values (enum).
- #default_for_currency_present=(default_for_currency_present : Bool)
- #default_for_currency_present? : Bool
- #fingerprint : String | Nil
-
#fingerprint=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #future_requirements : Stripe::BankAccountFutureRequirements | Nil
-
#future_requirements=(new_value : Stripe::BankAccountFutureRequirements | Nil)
Custom attribute writer method checking allowed values (enum).
- #future_requirements_present=(future_requirements_present : Bool)
- #future_requirements_present? : Bool
-
#hash(hasher)
Generates #hash and #== methods from all fields #== @return [Bool] #hash calculates hash code according to all attributes.
- #id : String | Nil
-
#id=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #last4 : String | Nil
-
#last4=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
-
#list_invalid_properties : Array(String)
Show invalid properties with the reasons.
- #metadata : Hash(String, String) | Nil
-
#metadata=(new_value : Hash(String, String) | Nil)
Custom attribute writer method checking allowed values (enum).
- #metadata_present=(metadata_present : Bool)
- #metadata_present? : Bool
- #object : String | Nil
-
#object=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #requirements : Stripe::BankAccountRequirements | Nil
-
#requirements=(new_value : Stripe::BankAccountRequirements | Nil)
Custom attribute writer method checking allowed values (enum).
- #requirements_present=(requirements_present : Bool)
- #requirements_present? : Bool
- #routing_number : String | Nil
-
#routing_number=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
- #status : String | Nil
-
#status=(new_value : String | Nil)
Custom attribute writer method checking allowed values (enum).
-
#valid? : Bool
Check to see if the all the properties in the model are valid @return true if the model is valid
Instance methods inherited from module OpenApi::Json
after_initialize
after_initialize,
clone
clone,
eql?(o : self)
eql?,
to_hash : Hash(String, JSON::Any)
to_hash,
to_json_any : JSON::Any
to_json_any
Class methods inherited from module OpenApi::Json
build_from_hash(hash : Hash)
build_from_hash,
build_from_json_any(json_any : JSON::Any)
build_from_json_any
Instance methods inherited from module OpenApi::Validatable
list_invalid_properties : Array(String)
list_invalid_properties,
list_invalid_properties_for(key : String) : Array(String)
list_invalid_properties_for,
valid? : Bool
valid?,
validate : Nil
validate
Constructor Detail
Initializes the object @param [Hash] attributes Model attributes in the form of hash
Instance Method Detail
Generates #hash and #== methods from all fields #== @return [Bool] #hash calculates hash code according to all attributes. #hash @return [UInt64] Hash code
Custom attribute writer method checking allowed values (enum). @param [Object] account Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] account_holder_name Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] account_holder_type Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] account_type Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] available_payout_methods Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] bank_name Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] country Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] currency Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] customer Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] default_for_currency Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] fingerprint Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] future_requirements Object to be assigned
Generates #hash and #== methods from all fields #== @return [Bool] #hash calculates hash code according to all attributes. #hash @return [UInt64] Hash code
Custom attribute writer method checking allowed values (enum). @param [Object] id Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] last4 Object to be assigned
Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons
Custom attribute writer method checking allowed values (enum). @param [Object] metadata Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] object Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] requirements Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] routing_number Object to be assigned
Custom attribute writer method checking allowed values (enum). @param [Object] status Object to be assigned
Check to see if the all the properties in the model are valid @return true if the model is valid