Class: CheckoutSdk::Payments::BancontactSource
- Inherits:
-
PaymentSource
- Object
- PaymentSource
- CheckoutSdk::Payments::BancontactSource
- Defined in:
- lib/checkout_sdk/payments/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.
19 20 21 |
# File 'lib/checkout_sdk/payments/source/apm/bancontact_source.rb', line 19 def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end |
Instance Attribute Details
#account_holder_name ⇒ String
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/checkout_sdk/payments/source/apm/bancontact_source.rb', line 13 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
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/checkout_sdk/payments/source/apm/bancontact_source.rb', line 13 class BancontactSource < PaymentSource attr_accessor :payment_country, :account_holder_name, :billing_descriptor, :language def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end end |
#language ⇒ String
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/checkout_sdk/payments/source/apm/bancontact_source.rb', line 13 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.
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/checkout_sdk/payments/source/apm/bancontact_source.rb', line 13 class BancontactSource < PaymentSource attr_accessor :payment_country, :account_holder_name, :billing_descriptor, :language def initialize super CheckoutSdk::Common::PaymentSourceType::BANCONTACT end end |