Class: Quickfix::SecurityAltID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityAltID

Returns a new instance of SecurityAltID.



6324
6325
6326
6327
6328
6329
6330
# File 'lib/quickfix_fields.rb', line 6324

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