Class: Stripe::AccountExternalAccountUpdateParams::Documents
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountExternalAccountUpdateParams::Documents
- Defined in:
- lib/stripe/params/account_external_account_update_params.rb
Defined Under Namespace
Classes: BankAccountOwnershipVerification
Instance Attribute Summary collapse
-
#bank_account_ownership_verification ⇒ Object
One or more documents that support the [Bank account ownership verification](support.stripe.com/questions/bank-account-ownership-verification) requirement.
Instance Method Summary collapse
-
#initialize(bank_account_ownership_verification: nil) ⇒ Documents
constructor
A new instance of Documents.
Methods inherited from RequestParams
Constructor Details
#initialize(bank_account_ownership_verification: nil) ⇒ Documents
Returns a new instance of Documents.
18 19 20 |
# File 'lib/stripe/params/account_external_account_update_params.rb', line 18 def initialize(bank_account_ownership_verification: nil) @bank_account_ownership_verification = bank_account_ownership_verification end |
Instance Attribute Details
#bank_account_ownership_verification ⇒ Object
One or more documents that support the [Bank account ownership verification](support.stripe.com/questions/bank-account-ownership-verification) requirement. Must be a document associated with the bank account that displays the last 4 digits of the account number, either a statement or a check.
16 17 18 |
# File 'lib/stripe/params/account_external_account_update_params.rb', line 16 def bank_account_ownership_verification @bank_account_ownership_verification end |