Class: Stripe::PaymentIntent::CreateParams::PaymentMethodData::AcssDebit
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntent::CreateParams::PaymentMethodData::AcssDebit
- Defined in:
- lib/stripe/resources/payment_intent.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.
1651 1652 1653 1654 1655 |
# File 'lib/stripe/resources/payment_intent.rb', line 1651 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.
1645 1646 1647 |
# File 'lib/stripe/resources/payment_intent.rb', line 1645 def account_number @account_number end |
#institution_number ⇒ Object
Institution number of the customer’s bank.
1647 1648 1649 |
# File 'lib/stripe/resources/payment_intent.rb', line 1647 def institution_number @institution_number end |
#transit_number ⇒ Object
Transit number of the customer’s bank.
1649 1650 1651 |
# File 'lib/stripe/resources/payment_intent.rb', line 1649 def transit_number @transit_number end |