Class: Quickfix::UnderlyingMinPriceIncrementAmount

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMinPriceIncrementAmount

Returns a new instance of UnderlyingMinPriceIncrementAmount.



26539
26540
26541
26542
26543
26544
26545
# File 'lib/quickfix_fields.rb', line 26539

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

Class Method Details

.fieldObject



26536
26537
26538
# File 'lib/quickfix_fields.rb', line 26536

def UnderlyingMinPriceIncrementAmount.field
  return 2027
end