Class: CheckoutSdk::Payments::AchSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Payments::AchSource
- Defined in:
- lib/checkout_sdk/payments/source/apm/ach_source.rb
Instance Attribute Summary collapse
- #account_holder ⇒ CheckoutSdk::Common::AccountHolder
- #account_number ⇒ String
- #account_type ⇒ CheckoutSdk::Common::AccountType
- #bank_code ⇒ String
- #country ⇒ CheckoutSdk::Common::Country
Attributes inherited from PaymentSource
Instance Method Summary collapse
-
#initialize ⇒ AchSource
constructor
A new instance of AchSource.
Constructor Details
#initialize ⇒ AchSource
Returns a new instance of AchSource.
22 23 24 |
# File 'lib/checkout_sdk/payments/source/apm/ach_source.rb', line 22 def initialize super CheckoutSdk::Common::PaymentSourceType::ACH end |
Instance Attribute Details
#account_holder ⇒ CheckoutSdk::Common::AccountHolder
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/source/apm/ach_source.rb', line 15 class AchSource < PaymentSource attr_accessor :account_type, :country, :account_number, :bank_code, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ACH end end |
#account_number ⇒ String
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/source/apm/ach_source.rb', line 15 class AchSource < PaymentSource attr_accessor :account_type, :country, :account_number, :bank_code, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ACH end end |
#account_type ⇒ CheckoutSdk::Common::AccountType
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/source/apm/ach_source.rb', line 15 class AchSource < PaymentSource attr_accessor :account_type, :country, :account_number, :bank_code, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ACH end end |
#bank_code ⇒ String
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/source/apm/ach_source.rb', line 15 class AchSource < PaymentSource attr_accessor :account_type, :country, :account_number, :bank_code, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ACH end end |
#country ⇒ CheckoutSdk::Common::Country
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/checkout_sdk/payments/source/apm/ach_source.rb', line 15 class AchSource < PaymentSource attr_accessor :account_type, :country, :account_number, :bank_code, :account_holder def initialize super CheckoutSdk::Common::PaymentSourceType::ACH end end |