Class: Quickfix::FillQty

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) ⇒ FillQty

Returns a new instance of FillQty.



18141
18142
18143
18144
18145
18146
18147
# File 'lib/quickfix_fields.rb', line 18141

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

Class Method Details

.fieldObject



18138
18139
18140
# File 'lib/quickfix_fields.rb', line 18138

def FillQty.field
	return 1365
end