Class: Quickfix::DividendFinalRatePrecision

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ DividendFinalRatePrecision

Returns a new instance of DividendFinalRatePrecision.



63589
63590
63591
63592
63593
63594
63595
# File 'lib/quickfix_fields.rb', line 63589

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

Class Method Details

.fieldObject



63586
63587
63588
# File 'lib/quickfix_fields.rb', line 63586

def DividendFinalRatePrecision.field
  return 42233
end