Class: Quickfix::UnderlyingTotalIssuedAmount

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

Returns a new instance of UnderlyingTotalIssuedAmount.



26058
26059
26060
26061
26062
26063
26064
# File 'lib/quickfix_fields.rb', line 26058

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

Class Method Details

.fieldObject



26055
26056
26057
# File 'lib/quickfix_fields.rb', line 26055

def UnderlyingTotalIssuedAmount.field
	return 1990
end