Class: Quickfix::TotalIssuedAmount

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

Returns a new instance of TotalIssuedAmount.



25499
25500
25501
25502
25503
25504
25505
# File 'lib/quickfix_fields.rb', line 25499

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

Class Method Details

.fieldObject



25496
25497
25498
# File 'lib/quickfix_fields.rb', line 25496

def TotalIssuedAmount.field
	return 1947
end