Class: Quickfix::OfferSpotRate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OfferSpotRate

Returns a new instance of OfferSpotRate.



2879
2880
2881
2882
2883
2884
2885
# File 'lib/quickfix_fields.rb', line 2879

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