Class: Quickfix::SecurityDesc

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecurityDesc

Returns a new instance of SecurityDesc.



890
891
892
893
894
895
896
# File 'lib/quickfix_fields.rb', line 890

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

Class Method Details

.fieldObject



887
888
889
# File 'lib/quickfix_fields.rb', line 887

def SecurityDesc.field
	return 107
end