Class: CheckoutSdk::Payments::GiropaySource

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

Instance Attribute Summary collapse

Attributes inherited from PaymentSource

#type

Instance Method Summary collapse

Constructor Details

#initializeGiropaySource

Returns a new instance of GiropaySource.



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

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

Instance Attribute Details

#account_holderCheckoutSdk::Common::AccountHolder



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

class GiropaySource < PaymentSource
  attr_accessor :account_holder

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