Class: Quickfix::UnderlyingStrikeUnitOfMeasure

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingStrikeUnitOfMeasure

Returns a new instance of UnderlyingStrikeUnitOfMeasure.



54320
54321
54322
54323
54324
54325
54326
# File 'lib/quickfix_fields.rb', line 54320

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