Class: Quickfix::SecurityID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityID

Returns a new instance of SecurityID.



8521
8522
8523
8524
8525
8526
8527
# File 'lib/quickfix_fields.rb', line 8521

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

Class Method Details

.fieldObject



8518
8519
8520
# File 'lib/quickfix_fields.rb', line 8518

def SecurityID.field
	return 48
end