Class: Quickfix::UnderlyingSecurityStatus

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

Returns a new instance of UnderlyingSecurityStatus.



26331
26332
26333
26334
26335
26336
26337
# File 'lib/quickfix_fields.rb', line 26331

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

Class Method Details

.fieldObject



26328
26329
26330
# File 'lib/quickfix_fields.rb', line 26328

def UnderlyingSecurityStatus.field
  return 2011
end