Class: Quickfix::UnderlyingObligationID

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

Returns a new instance of UnderlyingObligationID.



26110
26111
26112
26113
26114
26115
26116
# File 'lib/quickfix_fields.rb', line 26110

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

Class Method Details

.fieldObject



26107
26108
26109
# File 'lib/quickfix_fields.rb', line 26107

def UnderlyingObligationID.field
  return 1994
end