Class: Quickfix::CashSettlAmount

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

Instance Method Summary collapse

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