Class: Quickfix::UnderlyingSecurityID

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

Returns a new instance of UnderlyingSecurityID.



3906
3907
3908
3909
3910
3911
3912
# File 'lib/quickfix_fields.rb', line 3906

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

Class Method Details

.fieldObject



3903
3904
3905
# File 'lib/quickfix_fields.rb', line 3903

def UnderlyingSecurityID.field
	return 309
end