Class: Quickfix::UnderlyingObligationType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingObligationType

Returns a new instance of UnderlyingObligationType.



26344
26345
26346
26347
26348
26349
26350
# File 'lib/quickfix_fields.rb', line 26344

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