Class: Quickfix::UnderlyingAssetClass

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingAssetClass

Returns a new instance of UnderlyingAssetClass.



26357
26358
26359
26360
26361
26362
26363
# File 'lib/quickfix_fields.rb', line 26357

def initialize(data = nil)
  if( data == nil )
    super(2013)
  else
    super(2013, data)
  end
end

Class Method Details

.fieldObject



26354
26355
26356
# File 'lib/quickfix_fields.rb', line 26354

def UnderlyingAssetClass.field
  return 2013
end