Class: Quickfix::UnderlyingEquityID

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

Returns a new instance of UnderlyingEquityID.



26136
26137
26138
26139
26140
26141
26142
# File 'lib/quickfix_fields.rb', line 26136

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

Class Method Details

.fieldObject



26133
26134
26135
# File 'lib/quickfix_fields.rb', line 26133

def UnderlyingEquityID.field
  return 1996
end