Class: Quickfix::UnitOfMeasure

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnitOfMeasure

Returns a new instance of UnitOfMeasure.



8872
8873
8874
8875
8876
8877
8878
# File 'lib/quickfix_fields.rb', line 8872

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

Class Method Details

.fieldObject



8869
8870
8871
# File 'lib/quickfix_fields.rb', line 8869

def UnitOfMeasure.field
	return 996
end