Class: Quickfix::LimitAmtType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LimitAmtType

Returns a new instance of LimitAmtType.



20052
20053
20054
20055
20056
20057
20058
# File 'lib/quickfix_fields.rb', line 20052

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