Class: Quickfix::NoLimitAmts

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

Returns a new instance of NoLimitAmts.



20039
20040
20041
20042
20043
20044
20045
# File 'lib/quickfix_fields.rb', line 20039

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

Class Method Details

.fieldObject



20036
20037
20038
# File 'lib/quickfix_fields.rb', line 20036

def NoLimitAmts.field
  return 1630
end