Class: Quickfix::UnderlyingNTPositionLimit

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

Returns a new instance of UnderlyingNTPositionLimit.



26682
26683
26684
26685
26686
26687
26688
# File 'lib/quickfix_fields.rb', line 26682

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

Class Method Details

.fieldObject



26679
26680
26681
# File 'lib/quickfix_fields.rb', line 26679

def UnderlyingNTPositionLimit.field
  return 2038
end