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.



13435
13436
13437
13438
13439
13440
13441
# File 'lib/quickfix_fields.rb', line 13435

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