Class: CheckoutSdk::Instruments::Instrument

Inherits:
Object
  • Object
show all
Defined in:
lib/checkout_sdk/instruments/create/instrument.rb

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

Returns:



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/checkout_sdk/instruments/create/instrument.rb', line 7

class Instrument
  attr_reader :type

  protected

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