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.



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

Class Method Details

.fieldObject



13432
13433
13434
# File 'lib/quickfix_fields.rb', line 13432

def UnderlyingUnitofMeasure.field
	return 998
end