Class: Quickfix::NoLimitAmts

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

Instance Method Summary collapse

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