Class: Quickfix::CashSettlAmount

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

Returns a new instance of CashSettlAmount.



27748
27749
27750
27751
27752
27753
27754
# File 'lib/quickfix_fields.rb', line 27748

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

Class Method Details

.fieldObject



27745
27746
27747
# File 'lib/quickfix_fields.rb', line 27745

def CashSettlAmount.field
	return 40034
end