Class: Quickfix::UnderlyingObligationIDSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingObligationIDSource



26123
26124
26125
26126
26127
26128
26129
# File 'lib/quickfix_fields.rb', line 26123

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