Class: Quickfix::UnderlyingSecurityGroup

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

Class Method Details

.fieldObject



26289
26290
26291
# File 'lib/quickfix_fields.rb', line 26289

def UnderlyingSecurityGroup.field
  return 2008
end