Source code for sdk.lusid.models.compliance_parameter

# 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.
"""


from __future__ import annotations
import pprint
import re  # noqa: F401
import json


from typing import Any, Dict, Union
from pydantic.v1 import BaseModel, Field, StrictStr, validator
import lusid.models

[docs] class ComplianceParameter(BaseModel): """ ComplianceParameter """ compliance_parameter_type: StrictStr = Field(..., alias="complianceParameterType", description="The parameter type. The available values are: BoolComplianceParameter, StringComplianceParameter, DecimalComplianceParameter, DateTimeComplianceParameter, PropertyKeyComplianceParameter, AddressKeyComplianceParameter, PortfolioIdComplianceParameter, PortfolioGroupIdComplianceParameter, StringListComplianceParameter, BoolListComplianceParameter, DateTimeListComplianceParameter, DecimalListComplianceParameter, PropertyKeyListComplianceParameter, AddressKeyListComplianceParameter, PortfolioIdListComplianceParameter, PortfolioGroupIdListComplianceParameter, InstrumentListComplianceParameter, FilterPredicateComplianceParameter, GroupFilterPredicateComplianceParameter, GroupBySelectorComplianceParameter, PropertyListComplianceParameter") __properties = ["complianceParameterType"]
[docs] @validator('compliance_parameter_type') def compliance_parameter_type_validate_enum(cls, value): """Validates the enum""" if value not in ('BoolComplianceParameter', 'StringComplianceParameter', 'DecimalComplianceParameter', 'DateTimeComplianceParameter', 'PropertyKeyComplianceParameter', 'AddressKeyComplianceParameter', 'PortfolioIdComplianceParameter', 'PortfolioGroupIdComplianceParameter', 'StringListComplianceParameter', 'BoolListComplianceParameter', 'DateTimeListComplianceParameter', 'DecimalListComplianceParameter', 'PropertyKeyListComplianceParameter', 'AddressKeyListComplianceParameter', 'PortfolioIdListComplianceParameter', 'PortfolioGroupIdListComplianceParameter', 'InstrumentListComplianceParameter', 'FilterPredicateComplianceParameter', 'GroupFilterPredicateComplianceParameter', 'GroupBySelectorComplianceParameter', 'PropertyListComplianceParameter'): raise ValueError("must be one of enum values ('BoolComplianceParameter', 'StringComplianceParameter', 'DecimalComplianceParameter', 'DateTimeComplianceParameter', 'PropertyKeyComplianceParameter', 'AddressKeyComplianceParameter', 'PortfolioIdComplianceParameter', 'PortfolioGroupIdComplianceParameter', 'StringListComplianceParameter', 'BoolListComplianceParameter', 'DateTimeListComplianceParameter', 'DecimalListComplianceParameter', 'PropertyKeyListComplianceParameter', 'AddressKeyListComplianceParameter', 'PortfolioIdListComplianceParameter', 'PortfolioGroupIdListComplianceParameter', 'InstrumentListComplianceParameter', 'FilterPredicateComplianceParameter', 'GroupFilterPredicateComplianceParameter', 'GroupBySelectorComplianceParameter', 'PropertyListComplianceParameter')") return value
[docs] class Config: """Pydantic configuration""" allow_population_by_field_name = True validate_assignment = True
# JSON field name that stores the object type __discriminator_property_name = 'complianceParameterType' # discriminator mappings __discriminator_value_class_map = { 'AddressKeyComplianceParameter': 'AddressKeyComplianceParameter', 'AddressKeyListComplianceParameter': 'AddressKeyListComplianceParameter', 'BoolComplianceParameter': 'BoolComplianceParameter', 'BoolListComplianceParameter': 'BoolListComplianceParameter', 'DateTimeComplianceParameter': 'DateTimeComplianceParameter', 'DateTimeListComplianceParameter': 'DateTimeListComplianceParameter', 'DecimalComplianceParameter': 'DecimalComplianceParameter', 'DecimalListComplianceParameter': 'DecimalListComplianceParameter', 'FilterPredicateComplianceParameter': 'FilterPredicateComplianceParameter', 'GroupBySelectorComplianceParameter': 'GroupBySelectorComplianceParameter', 'GroupFilterPredicateComplianceParameter': 'GroupFilterPredicateComplianceParameter', 'InstrumentListComplianceParameter': 'InstrumentListComplianceParameter', 'PortfolioGroupIdComplianceParameter': 'PortfolioGroupIdComplianceParameter', 'PortfolioGroupIdListComplianceParameter': 'PortfolioGroupIdListComplianceParameter', 'PortfolioIdComplianceParameter': 'PortfolioIdComplianceParameter', 'PortfolioIdListComplianceParameter': 'PortfolioIdListComplianceParameter', 'PropertyKeyComplianceParameter': 'PropertyKeyComplianceParameter', 'PropertyKeyListComplianceParameter': 'PropertyKeyListComplianceParameter', 'PropertyListComplianceParameter': 'PropertyListComplianceParameter', 'StringComplianceParameter': 'StringComplianceParameter', 'StringListComplianceParameter': 'StringListComplianceParameter' }
[docs] @classmethod def get_discriminator_value(cls, obj: dict) -> str: """Returns the discriminator value (object type) of the data""" discriminator_value = obj[cls.__discriminator_property_name] if discriminator_value: return cls.__discriminator_value_class_map.get(discriminator_value) else: return None
[docs] def to_str(self) -> str: """Returns the string representation of the model using alias""" return pprint.pformat(self.dict(by_alias=True))
[docs] def to_json(self) -> str: """Returns the JSON representation of the model using alias""" return json.dumps(self.to_dict())
[docs] @classmethod def from_json(cls, json_str: str) -> Union(AddressKeyComplianceParameter, AddressKeyListComplianceParameter, BoolComplianceParameter, BoolListComplianceParameter, DateTimeComplianceParameter, DateTimeListComplianceParameter, DecimalComplianceParameter, DecimalListComplianceParameter, FilterPredicateComplianceParameter, GroupBySelectorComplianceParameter, GroupFilterPredicateComplianceParameter, InstrumentListComplianceParameter, PortfolioGroupIdComplianceParameter, PortfolioGroupIdListComplianceParameter, PortfolioIdComplianceParameter, PortfolioIdListComplianceParameter, PropertyKeyComplianceParameter, PropertyKeyListComplianceParameter, PropertyListComplianceParameter, StringComplianceParameter, StringListComplianceParameter): """Create an instance of ComplianceParameter from a JSON string""" return cls.from_dict(json.loads(json_str))
[docs] def to_dict(self): """Returns the dictionary representation of the model using alias""" _dict = self.dict(by_alias=True, exclude={ }, exclude_none=True) return _dict
[docs] @classmethod def from_dict(cls, obj: dict) -> Union(AddressKeyComplianceParameter, AddressKeyListComplianceParameter, BoolComplianceParameter, BoolListComplianceParameter, DateTimeComplianceParameter, DateTimeListComplianceParameter, DecimalComplianceParameter, DecimalListComplianceParameter, FilterPredicateComplianceParameter, GroupBySelectorComplianceParameter, GroupFilterPredicateComplianceParameter, InstrumentListComplianceParameter, PortfolioGroupIdComplianceParameter, PortfolioGroupIdListComplianceParameter, PortfolioIdComplianceParameter, PortfolioIdListComplianceParameter, PropertyKeyComplianceParameter, PropertyKeyListComplianceParameter, PropertyListComplianceParameter, StringComplianceParameter, StringListComplianceParameter): """Create an instance of ComplianceParameter from a dict""" # look up the object type based on discriminator mapping object_type = cls.get_discriminator_value(obj) if object_type: klass = getattr(lusid.models, object_type) return klass.from_dict(obj) else: raise ValueError("ComplianceParameter failed to lookup discriminator value from " + json.dumps(obj) + ". Discriminator property name: " + cls.__discriminator_property_name + ", mapping: " + json.dumps(cls.__discriminator_value_class_map))