Class: Quickfix::UnderlyingEquityIDSource

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

Returns a new instance of UnderlyingEquityIDSource.



26149
26150
26151
26152
26153
26154
26155
# File 'lib/quickfix_fields.rb', line 26149

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

Class Method Details

.fieldObject



26146
26147
26148
# File 'lib/quickfix_fields.rb', line 26146

def UnderlyingEquityIDSource.field
  return 1997
end