Class: Quickfix::StrikeUnitOfMeasure

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeUnitOfMeasure

Returns a new instance of StrikeUnitOfMeasure.



42334
42335
42336
42337
42338
42339
42340
# File 'lib/quickfix_fields.rb', line 42334

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