Class: Quickfix::OfferSpotRate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



2876
2877
2878
# File 'lib/quickfix_fields.rb', line 2876

def OfferSpotRate.field
	return 190
end