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