Class: Quickfix::ShortQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ShortQty

Returns a new instance of ShortQty.



12902
12903
12904
12905
12906
12907
12908
# File 'lib/quickfix_fields.rb', line 12902

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

Class Method Details

.fieldObject



12899
12900
12901
# File 'lib/quickfix_fields.rb', line 12899

def ShortQty.field
	return 705
end