Class: Quickfix::UnderlyingIndexAnnexSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingIndexAnnexSource

Returns a new instance of UnderlyingIndexAnnexSource.



26266
26267
26268
26269
26270
26271
26272
# File 'lib/quickfix_fields.rb', line 26266

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