Class: Quickfix::UnderlyingQty

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

Returns a new instance of UnderlyingQty.



11901
11902
11903
11904
11905
11906
11907
# File 'lib/quickfix_fields.rb', line 11901

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

Class Method Details

.fieldObject



11898
11899
11900
# File 'lib/quickfix_fields.rb', line 11898

def UnderlyingQty.field
	return 879
end