Class: Quickfix::UnderlyingCouponFrequencyPeriod

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

Instance Method Summary collapse

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