Class: Quickfix::DividendInitialRate

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

Returns a new instance of DividendInitialRate.



63563
63564
63565
63566
63567
63568
63569
# File 'lib/quickfix_fields.rb', line 63563

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

Class Method Details

.fieldObject



63560
63561
63562
# File 'lib/quickfix_fields.rb', line 63560

def DividendInitialRate.field
  return 42231
end