# 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 List, Dict, Optional, Any, Union, TYPE_CHECKING
from typing_extensions import Annotated
from pydantic.v1 import BaseModel, StrictStr, StrictInt, StrictBool, StrictFloat, StrictBytes, Field, validator, ValidationError, conlist, constr
from datetime import datetime
from lusid.models.amount import Amount
from lusid.models.share_class_amount import ShareClassAmount
[docs]
class ShareClassDealingBreakdown(BaseModel):
"""
The breakdown of Dealing for a Share Class. # noqa: E501
"""
class_dealing: Dict[str, ShareClassAmount] = Field(description="Bucket of detail for any 'Dealing' specific to the share class that has occurred inside the queried period.", alias="classDealing")
class_dealing_units: Dict[str, Amount] = Field(description="Bucket of detail for any 'Dealing' units specific to the share class that has occurred inside the queried period.", alias="classDealingUnits")
__properties = ["classDealing", "classDealingUnits"]
[docs]
class Config:
"""Pydantic configuration"""
allow_population_by_field_name = True
validate_assignment = True
def __str__(self):
"""For `print` and `pprint`"""
return pprint.pformat(self.dict(by_alias=False))
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
[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) -> ShareClassDealingBreakdown:
"""Create an instance of ShareClassDealingBreakdown 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)
# override the default output from pydantic by calling `to_dict()` of each value in class_dealing (dict)
_field_dict = {}
if self.class_dealing:
for _key in self.class_dealing:
if self.class_dealing[_key]:
_field_dict[_key] = self.class_dealing[_key].to_dict()
_dict['classDealing'] = _field_dict
# override the default output from pydantic by calling `to_dict()` of each value in class_dealing_units (dict)
_field_dict = {}
if self.class_dealing_units:
for _key in self.class_dealing_units:
if self.class_dealing_units[_key]:
_field_dict[_key] = self.class_dealing_units[_key].to_dict()
_dict['classDealingUnits'] = _field_dict
return _dict
[docs]
@classmethod
def from_dict(cls, obj: dict) -> ShareClassDealingBreakdown:
"""Create an instance of ShareClassDealingBreakdown from a dict"""
if obj is None:
return None
if not isinstance(obj, dict):
return ShareClassDealingBreakdown.parse_obj(obj)
_obj = ShareClassDealingBreakdown.parse_obj({
"class_dealing": dict(
(_k, ShareClassAmount.from_dict(_v))
for _k, _v in obj.get("classDealing").items()
)
if obj.get("classDealing") is not None
else None,
"class_dealing_units": dict(
(_k, Amount.from_dict(_v))
for _k, _v in obj.get("classDealingUnits").items()
)
if obj.get("classDealingUnits") is not None
else None
})
return _obj
ShareClassDealingBreakdown.update_forward_refs()