Class: Quickfix::UnderlyingSecurityGroup

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingSecurityGroup

Returns a new instance of UnderlyingSecurityGroup.



26292
26293
26294
26295
26296
26297
26298
# File 'lib/quickfix_fields.rb', line 26292

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