Class: CheckoutSdk::Payments::IdealSource

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

Instance Attribute Summary collapse

Attributes inherited from PaymentSource

#type

Instance Method Summary collapse

Constructor Details

#initializeIdealSource

Returns a new instance of IdealSource.



13
14
15
# File 'lib/checkout_sdk/payments/source/apm/ideal_source.rb', line 13

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

Instance Attribute Details

#descriptionString

Returns:

  • (String)


9
10
11
12
13
14
15
16
# File 'lib/checkout_sdk/payments/source/apm/ideal_source.rb', line 9

class IdealSource < PaymentSource
  attr_accessor :description,
                :language

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

#languageString

Returns:

  • (String)


9
10
11
12
13
14
15
16
# File 'lib/checkout_sdk/payments/source/apm/ideal_source.rb', line 9

class IdealSource < PaymentSource
  attr_accessor :description,
                :language

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