Class: Stripe::TestHelpers::ConfirmationTokenCreateParams::PaymentMethodData::AuBecsDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::TestHelpers::ConfirmationTokenCreateParams::PaymentMethodData::AuBecsDebit
- Defined in:
- lib/stripe/params/test_helpers/confirmation_token_create_params.rb
Instance Attribute Summary collapse
-
#account_number ⇒ Object
The account number for the bank account.
-
#bsb_number ⇒ Object
Bank-State-Branch number of the bank account.
Instance Method Summary collapse
-
#initialize(account_number: nil, bsb_number: nil) ⇒ AuBecsDebit
constructor
A new instance of AuBecsDebit.
Methods inherited from RequestParams
Constructor Details
#initialize(account_number: nil, bsb_number: nil) ⇒ AuBecsDebit
35 36 37 38 |
# File 'lib/stripe/params/test_helpers/confirmation_token_create_params.rb', line 35 def initialize(account_number: nil, bsb_number: nil) @account_number = account_number @bsb_number = bsb_number end |
Instance Attribute Details
#account_number ⇒ Object
The account number for the bank account.
31 32 33 |
# File 'lib/stripe/params/test_helpers/confirmation_token_create_params.rb', line 31 def account_number @account_number end |
#bsb_number ⇒ Object
Bank-State-Branch number of the bank account.
33 34 35 |
# File 'lib/stripe/params/test_helpers/confirmation_token_create_params.rb', line 33 def bsb_number @bsb_number end |