Class: Quickfix::UnderlyingSecurityDesc

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) ⇒ UnderlyingSecurityDesc

Returns a new instance of UnderlyingSecurityDesc.



3880
3881
3882
3883
3884
3885
3886
# File 'lib/quickfix_fields.rb', line 3880

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

Class Method Details

.fieldObject



3877
3878
3879
# File 'lib/quickfix_fields.rb', line 3877

def UnderlyingSecurityDesc.field
	return 307
end