Class: CheckoutSdk::Previous::Payments::BancontactSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Previous::Payments::BancontactSource
- Defined in:
- lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb
Instance Attribute Summary collapse
- #account_holder_name ⇒ String
- #billing_descriptor ⇒ String
- #language ⇒ String
- #payment_country ⇒ String
Attributes inherited from PaymentSource
Instance Method Summary collapse
-
#initialize ⇒ BancontactSource
constructor
A new instance of BancontactSource.
Constructor Details
#initialize ⇒ BancontactSource
Returns a new instance of BancontactSource.
20 21 22 |
# File 'lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb', line 20 def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end |
Instance Attribute Details
#account_holder_name ⇒ String
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb', line 14 class BancontactSource < PaymentSource attr_accessor :payment_country, :account_holder_name, :billing_descriptor, :language def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end end |
#billing_descriptor ⇒ String
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb', line 14 class BancontactSource < PaymentSource attr_accessor :payment_country, :account_holder_name, :billing_descriptor, :language def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end end |
#language ⇒ String
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb', line 14 class BancontactSource < PaymentSource attr_accessor :payment_country, :account_holder_name, :billing_descriptor, :language def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end end |
#payment_country ⇒ String
Returns Common::Country.
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/checkout_sdk/payments/previous/source/apm/bancontact_source.rb', line 14 class BancontactSource < PaymentSource attr_accessor :payment_country, :account_holder_name, :billing_descriptor, :language def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end end |