Class: Quickfix::RepurchaseRate

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) ⇒ RepurchaseRate

Returns a new instance of RepurchaseRate.



5765
5766
5767
5768
5769
5770
5771
# File 'lib/quickfix_fields.rb', line 5765

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

Class Method Details

.fieldObject



5762
5763
5764
# File 'lib/quickfix_fields.rb', line 5762

def RepurchaseRate.field
	return 227
end