Class: Quickfix::UnitofMeasure

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnitofMeasure

Returns a new instance of UnitofMeasure.



13409
13410
13411
13412
13413
13414
13415
# File 'lib/quickfix_fields.rb', line 13409

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