Class: Quickfix::DividendCapRate

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

Returns a new instance of DividendCapRate.



63485
63486
63487
63488
63489
63490
63491
# File 'lib/quickfix_fields.rb', line 63485

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

Class Method Details

.fieldObject



63482
63483
63484
# File 'lib/quickfix_fields.rb', line 63482

def DividendCapRate.field
	return 42225
end