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

src.cdm.base.staticdata.party.BusinessUnit.py Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.92
Show newest version
# pylint: disable=line-too-long, invalid-name, missing-function-docstring, missing-module-docstring, superfluous-parens
# pylint: disable=wrong-import-position, unused-import, unused-wildcard-import, wildcard-import, wrong-import-order, missing-class-docstring
from __future__ import annotations
from typing import List, Optional
from datetime import date
from datetime import time
from datetime import datetime
from decimal import Decimal
from pydantic import Field
from rosetta.runtime.utils import *

__all__ = ['BusinessUnit']


class BusinessUnit(BaseDataClass):
  """
  A class to specify an organizational unit.
  """
  name: str = Field(..., description="A name used to describe the organizational unit")
  """
  A name used to describe the organizational unit
  """
  identifier: Optional[Identifier] = Field(None, description="An identifier used to uniquely identify the organizational unit")
  """
  An identifier used to uniquely identify the organizational unit
  """
  contactInformation: Optional[ContactInformation] = Field(None, description="The contact information for such business unit, when different from the contact information associated with the party.")
  """
  The contact information for such business unit, when different from the contact information associated with the party.
  """

from cdm.base.staticdata.identifier.Identifier import Identifier
from cdm.base.staticdata.party.ContactInformation import ContactInformation

BusinessUnit.update_forward_refs()




© 2015 - 2025 Weber Informatics LLC | Privacy Policy