Class: Quickfix::LegInstrumentRoundingPrecision

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) ⇒ LegInstrumentRoundingPrecision

Returns a new instance of LegInstrumentRoundingPrecision.



43335
43336
43337
43338
43339
43340
43341
# File 'lib/quickfix_fields.rb', line 43335

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

Class Method Details

.fieldObject



43332
43333
43334
# File 'lib/quickfix_fields.rb', line 43332

def LegInstrumentRoundingPrecision.field
  return 2215
end