Class: Quickfix::OrderQty

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

Returns a new instance of OrderQty.



1306
1307
1308
1309
1310
1311
1312
# File 'lib/quickfix_fields.rb', line 1306

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

Class Method Details

.fieldObject



1303
1304
1305
# File 'lib/quickfix_fields.rb', line 1303

def OrderQty.field
	return 38
end