Class: Quickfix::UnderlyingCouponFrequencyPeriod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCouponFrequencyPeriod

Returns a new instance of UnderlyingCouponFrequencyPeriod.



26071
26072
26073
26074
26075
26076
26077
# File 'lib/quickfix_fields.rb', line 26071

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

Class Method Details

.fieldObject



26068
26069
26070
# File 'lib/quickfix_fields.rb', line 26068

def UnderlyingCouponFrequencyPeriod.field
	return 1991
end