Class: Quickfix::SecurityAltIDSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityAltIDSource

Returns a new instance of SecurityAltIDSource.



6337
6338
6339
6340
6341
6342
6343
# File 'lib/quickfix_fields.rb', line 6337

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