Class: CheckoutSdk::Payments::EPSSource

Inherits:
PaymentSource show all
Defined in:
lib/checkout_sdk/payments/source/apm/eps_source.rb

Instance Attribute Summary collapse

Attributes inherited from PaymentSource

#type

Instance Method Summary collapse

Constructor Details

#initializeEPSSource

Returns a new instance of EPSSource.



10
11
12
# File 'lib/checkout_sdk/payments/source/apm/eps_source.rb', line 10

def initialize
  super CheckoutSdk::Common::PaymentSourceType::EPS
end

Instance Attribute Details

#purposeString

Returns:

  • (String)


7
8
9
10
11
12
13
# File 'lib/checkout_sdk/payments/source/apm/eps_source.rb', line 7

class EPSSource < PaymentSource
  attr_accessor :purpose

  def initialize
    super CheckoutSdk::Common::PaymentSourceType::EPS
  end
end