All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.cdm.product.common.schedule.PayRelativeToEnum.py Maven / Gradle / Ivy

# pylint: disable=missing-module-docstring, invalid-name, line-too-long
from enum import Enum

__all__ = ['PayRelativeToEnum']

class PayRelativeToEnum(Enum):
    """
    The enumerated values to specify whether payments occur relative to the calculation period start date or end date, each reset date, valuation date or the last pricing date.
    """
    CALCULATION_PERIOD_END_DATE = "CalculationPeriodEndDate"
    """
    Payments will occur relative to the last day of each calculation period.
    """
    CALCULATION_PERIOD_START_DATE = "CalculationPeriodStartDate"
    """
    Payments will occur relative to the first day of each calculation period.
    """
    LAST_PRICING_DATE = "LastPricingDate"
    """
    Payments will occur relative to the last Pricing Date of each Calculation Period.
    """
    RESET_DATE = "ResetDate"
    """
    Payments will occur relative to the reset date.
    """
    VALUATION_DATE = "ValuationDate"
    """
    Payments will occur relative to the valuation date.
    """




© 2015 - 2025 Weber Informatics LLC | Privacy Policy