Class: Quickfix::UnderlyingMakeWholeAmount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMakeWholeAmount

Returns a new instance of UnderlyingMakeWholeAmount.



72494
72495
72496
72497
72498
72499
72500
# File 'lib/quickfix_fields.rb', line 72494

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