Class: Quickfix::UnderlyingInstrumentRoundingPrecision

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingInstrumentRoundingPrecision

Returns a new instance of UnderlyingInstrumentRoundingPrecision.



54437
54438
54439
54440
54441
54442
54443
# File 'lib/quickfix_fields.rb', line 54437

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