Class: Quickfix::UnderlyingSymbolPositionNumber

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSymbolPositionNumber

Returns a new instance of UnderlyingSymbolPositionNumber.



79319
79320
79321
79322
79323
79324
79325
# File 'lib/quickfix_fields.rb', line 79319

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