Class: Quickfix::LegPosAmt

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LegPosAmt

Returns a new instance of LegPosAmt.



21794
21795
21796
21797
21798
21799
21800
# File 'lib/quickfix_fields.rb', line 21794

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