Class: Stripe::ConfirmationToken::CreateParams::PaymentMethodData::AuBecsDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ConfirmationToken::CreateParams::PaymentMethodData::AuBecsDebit
- Defined in:
- lib/stripe/resources/confirmation_token.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
Returns a new instance of AuBecsDebit.
1109 1110 1111 1112 |
# File 'lib/stripe/resources/confirmation_token.rb', line 1109 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.
1104 1105 1106 |
# File 'lib/stripe/resources/confirmation_token.rb', line 1104 def account_number @account_number end |
#bsb_number ⇒ Object
Bank-State-Branch number of the bank account.
1107 1108 1109 |
# File 'lib/stripe/resources/confirmation_token.rb', line 1107 def bsb_number @bsb_number end |