Class: Quickfix::CashSettlQuoteAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CashSettlQuoteAmount

Returns a new instance of CashSettlQuoteAmount.



27670
27671
27672
27673
27674
27675
27676
# File 'lib/quickfix_fields.rb', line 27670

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