Class: Quickfix::UnderlyingUnitOfMeasure

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingUnitOfMeasure

Returns a new instance of UnderlyingUnitOfMeasure.



15177
15178
15179
15180
15181
15182
15183
# File 'lib/quickfix_fields.rb', line 15177

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

Class Method Details

.fieldObject



15174
15175
15176
# File 'lib/quickfix_fields.rb', line 15174

def UnderlyingUnitOfMeasure.field
  return 998
end