Class: Quickfix::UnderlyingPositionLimit

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

Returns a new instance of UnderlyingPositionLimit.



26669
26670
26671
26672
26673
26674
26675
# File 'lib/quickfix_fields.rb', line 26669

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

Class Method Details

.fieldObject



26666
26667
26668
# File 'lib/quickfix_fields.rb', line 26666

def UnderlyingPositionLimit.field
  return 2037
end