Class: Quickfix::ReturnRateFinalPriceFallback

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ReturnRateFinalPriceFallback

Returns a new instance of ReturnRateFinalPriceFallback.



70557
70558
70559
70560
70561
70562
70563
# File 'lib/quickfix_fields.rb', line 70557

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