Class: Quickfix::LastLimitAmt

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LastLimitAmt

Returns a new instance of LastLimitAmt.



20065
20066
20067
20068
20069
20070
20071
# File 'lib/quickfix_fields.rb', line 20065

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