Class: Quickfix::LimitAmt

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LimitAmt

Returns a new instance of LimitAmt.



57570
57571
57572
57573
57574
57575
57576
# File 'lib/quickfix_fields.rb', line 57570

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