Class: Quickfix::UnderlyingObligationType

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

Class Method Details

.fieldObject



26341
26342
26343
# File 'lib/quickfix_fields.rb', line 26341

def UnderlyingObligationType.field
	return 2012
end