Class: Quickfix::DividendAccrualFixedRate

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

Returns a new instance of DividendAccrualFixedRate.



63849
63850
63851
63852
63853
63854
63855
# File 'lib/quickfix_fields.rb', line 63849

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

Class Method Details

.fieldObject



63846
63847
63848
# File 'lib/quickfix_fields.rb', line 63846

def DividendAccrualFixedRate.field
  return 42253
end