Class: Quickfix::CumQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CumQty

Returns a new instance of CumQty.



13552
13553
13554
13555
13556
13557
13558
# File 'lib/quickfix_fields.rb', line 13552

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

Class Method Details

.fieldObject



13549
13550
13551
# File 'lib/quickfix_fields.rb', line 13549

def CumQty.field
	return 14
end