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

src.cdm.observable.event.GracePeriodExtension.py Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
# pylint: disable=line-too-long, invalid-name, missing-function-docstring
# pylint: disable=bad-indentation, trailing-whitespace, superfluous-parens
# pylint: disable=wrong-import-position, unused-import, unused-wildcard-import
# pylint: disable=wildcard-import, wrong-import-order, missing-class-docstring
# pylint: disable=missing-module-docstring
from __future__ import annotations
from typing import List, Optional
import datetime
import inspect
from decimal import Decimal
from pydantic import Field
from rosetta.runtime.utils import (
    BaseDataClass, rosetta_condition, rosetta_resolve_attr
)
from rosetta.runtime.utils import *

__all__ = ['GracePeriodExtension']


class GracePeriodExtension(BaseDataClass):
    applicable: bool = Field(..., description="Indicates whether the grace period extension provision is applicable.")
    """
    Indicates whether the grace period extension provision is applicable.
    """
    gracePeriod: Optional[cdm.base.datetime.Offset.Offset] = Field(None, description="The number of calendar or business days after any due date that the reference entity has to fulfil its obligations before a failure to pay credit event is deemed to have occurred. ISDA 2003 Term: Grace Period.")
    """
    The number of calendar or business days after any due date that the reference entity has to fulfil its obligations before a failure to pay credit event is deemed to have occurred. ISDA 2003 Term: Grace Period.
    """

import cdm 
import cdm.base.datetime.Offset




© 2015 - 2025 Weber Informatics LLC | Privacy Policy