Class: Quickfix::UnderlyingUnitOfMeasure

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

Instance Method Summary collapse

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