Class: Quickfix::UnderlyingCouponDayCount

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCouponDayCount

Returns a new instance of UnderlyingCouponDayCount.



26097
26098
26099
26100
26101
26102
26103
# File 'lib/quickfix_fields.rb', line 26097

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