Class: Quickfix::UnderlyingEquityID

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

Instance Method Summary collapse

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