Class: Stripe::PaymentMethodUpdateParams::Payto
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethodUpdateParams::Payto
- Defined in:
- lib/stripe/params/payment_method_update_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.
-
#pay_id ⇒ Object
The PayID alias for the bank account.
Instance Method Summary collapse
-
#initialize(account_number: nil, bsb_number: nil, pay_id: nil) ⇒ Payto
constructor
A new instance of Payto.
Methods inherited from RequestParams
Constructor Details
#initialize(account_number: nil, bsb_number: nil, pay_id: nil) ⇒ Payto
Returns a new instance of Payto.
88 89 90 91 92 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 88 def initialize(account_number: nil, bsb_number: nil, pay_id: nil) @account_number = account_number @bsb_number = bsb_number @pay_id = pay_id end |
Instance Attribute Details
#account_number ⇒ Object
The account number for the bank account.
82 83 84 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 82 def account_number @account_number end |
#bsb_number ⇒ Object
Bank-State-Branch number of the bank account.
84 85 86 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 84 def bsb_number @bsb_number end |
#pay_id ⇒ Object
The PayID alias for the bank account.
86 87 88 |
# File 'lib/stripe/params/payment_method_update_params.rb', line 86 def pay_id @pay_id end |