src.cdm.base.staticdata.party.PayerReceiver.py Maven / Gradle / Ivy
# 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__ = ['PayerReceiver']
class PayerReceiver(BaseDataClass):
"""
Specifies the parties responsible for making and receiving payments defined by this structure.
"""
payer: cdm.base.staticdata.party.CounterpartyRoleEnum.CounterpartyRoleEnum = Field(..., description="Specifies the counterparty responsible for making the payments defined by this structure. The party is one of the two principal parties to the transaction.")
"""
Specifies the counterparty responsible for making the payments defined by this structure. The party is one of the two principal parties to the transaction.
"""
receiver: cdm.base.staticdata.party.CounterpartyRoleEnum.CounterpartyRoleEnum = Field(..., description="Specifies the party that receives the payments corresponding to this structure. The party is one of the two counterparties to the transaction.")
"""
Specifies the party that receives the payments corresponding to this structure. The party is one of the two counterparties to the transaction.
"""
import cdm
import cdm.base.staticdata.party.CounterpartyRoleEnum
© 2015 - 2025 Weber Informatics LLC | Privacy Policy