Class: Quickfix::UnderlyingQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingQty

Returns a new instance of UnderlyingQty.



17530
17531
17532
17533
17534
17535
17536
# File 'lib/quickfix_fields.rb', line 17530

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

Class Method Details

.fieldObject



17527
17528
17529
# File 'lib/quickfix_fields.rb', line 17527

def UnderlyingQty.field
	return 879
end