Class: Quickfix::CoveredQty

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ CoveredQty

Returns a new instance of CoveredQty.



20351
20352
20353
20354
20355
20356
20357
# File 'lib/quickfix_fields.rb', line 20351

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

Class Method Details

.fieldObject



20348
20349
20350
# File 'lib/quickfix_fields.rb', line 20348

def CoveredQty.field
	return 1654
end