Class: Stripe::PaymentMethod::CreateParams::AcssDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentMethod::CreateParams::AcssDebit
- Defined in:
- lib/stripe/resources/payment_method.rb
Instance Attribute Summary collapse
-
#account_number ⇒ Object
Customer’s bank account number.
-
#institution_number ⇒ Object
Institution number of the customer’s bank.
-
#transit_number ⇒ Object
Transit number of the customer’s bank.
Instance Method Summary collapse
-
#initialize(account_number: nil, institution_number: nil, transit_number: nil) ⇒ AcssDebit
constructor
A new instance of AcssDebit.
Methods inherited from RequestParams
Constructor Details
#initialize(account_number: nil, institution_number: nil, transit_number: nil) ⇒ AcssDebit
Returns a new instance of AcssDebit.
685 686 687 688 689 |
# File 'lib/stripe/resources/payment_method.rb', line 685 def initialize(account_number: nil, institution_number: nil, transit_number: nil) @account_number = account_number @institution_number = institution_number @transit_number = transit_number end |
Instance Attribute Details
#account_number ⇒ Object
Customer’s bank account number.
679 680 681 |
# File 'lib/stripe/resources/payment_method.rb', line 679 def account_number @account_number end |
#institution_number ⇒ Object
Institution number of the customer’s bank.
681 682 683 |
# File 'lib/stripe/resources/payment_method.rb', line 681 def institution_number @institution_number end |
#transit_number ⇒ Object
Transit number of the customer’s bank.
683 684 685 |
# File 'lib/stripe/resources/payment_method.rb', line 683 def transit_number @transit_number end |