Class: Quickfix::OrderQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderQty

Returns a new instance of OrderQty.



19441
19442
19443
19444
19445
19446
19447
# File 'lib/quickfix_fields.rb', line 19441

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

Class Method Details

.fieldObject



19438
19439
19440
# File 'lib/quickfix_fields.rb', line 19438

def OrderQty.field
	return 38
end