Class: Quickfix::SecurityAltIDSource

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



6334
6335
6336
# File 'lib/quickfix_fields.rb', line 6334

def SecurityAltIDSource.field
	return 456
end