Source code for sdk.lusid.models.property_domain

# coding: utf-8

"""
    LUSID API

    FINBOURNE Technology  # noqa: E501

    Contact: info@finbourne.com
    Generated by OpenAPI Generator (https://openapi-generator.tech)

    Do not edit the class manually.
"""


import json
import pprint
import re  # noqa: F401
from aenum import Enum, no_arg





[docs] class PropertyDomain(str, Enum): """ See https://wiki.finbourne.com/information/domain-model-properties Each domain refers to a logical set of properties which reside within it. """ """ allowed enum values """ NOTDEFINED = 'NotDefined' TRANSACTION = 'Transaction' PORTFOLIO = 'Portfolio' HOLDING = 'Holding' REFERENCEHOLDING = 'ReferenceHolding' TRANSACTIONCONFIGURATION = 'TransactionConfiguration' INSTRUMENT = 'Instrument' CUTLABELDEFINITION = 'CutLabelDefinition' ANALYTIC = 'Analytic' PORTFOLIOGROUP = 'PortfolioGroup' PERSON = 'Person' ACCESSMETADATA = 'AccessMetadata' ORDER = 'Order' UNITRESULT = 'UnitResult' MARKETDATA = 'MarketData' CONFIGURATIONRECIPE = 'ConfigurationRecipe' ALLOCATION = 'Allocation' CALENDAR = 'Calendar' LEGALENTITY = 'LegalEntity' PLACEMENT = 'Placement' EXECUTION = 'Execution' BLOCK = 'Block' PARTICIPATION = 'Participation' PACKAGE = 'Package' ORDERINSTRUCTION = 'OrderInstruction' NEXTBESTACTION = 'NextBestAction' CUSTOMENTITY = 'CustomEntity' INSTRUMENTEVENT = 'InstrumentEvent' ACCOUNT = 'Account' CHARTOFACCOUNTS = 'ChartOfAccounts' CUSTODIANACCOUNT = 'CustodianAccount' ABOR = 'Abor' ABORCONFIGURATION = 'AborConfiguration' FUND = 'Fund' FEE = 'Fee' RECONCILIATION = 'Reconciliation' PROPERTYDEFINITION = 'PropertyDefinition' COMPLIANCE = 'Compliance' DIARYENTRY = 'DiaryEntry' LEG = 'Leg' DERIVEDVALUATION = 'DerivedValuation'
[docs] @classmethod def from_json(cls, json_str: str) -> PropertyDomain: """Create an instance of PropertyDomain from a JSON string""" return PropertyDomain(json.loads(json_str))