Class: CheckoutSdk::Previous::Payments::PaymentSource

Inherits:
Object
  • Object
show all
Defined in:
lib/checkout_sdk/payments/previous/source/payment_source.rb

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

Returns:



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/checkout_sdk/payments/previous/source/payment_source.rb', line 8

class PaymentSource
  attr_reader :type

  protected

  # @abstract
  # @param [String] type {CheckoutSdk::Common::PaymentSourceType}
  def initialize(type)
    @type = type
  end
end