Class: Quickfix::LimitAmtRemaining

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LimitAmtRemaining

Returns a new instance of LimitAmtRemaining.



20078
20079
20080
20081
20082
20083
20084
# File 'lib/quickfix_fields.rb', line 20078

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