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