# 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, List, Optional, Union
from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
from lusid.models.currency_and_amount import CurrencyAndAmount
from lusid.models.model_property import ModelProperty
from lusid.models.perpetual_property import PerpetualProperty
from lusid.models.settlement_schedule import SettlementSchedule
from lusid.models.transaction import Transaction
[docs]
class PortfolioHolding(BaseModel):
"""
A list of holdings. # noqa: E501
"""
instrument_scope: Optional[StrictStr] = Field(None, alias="instrumentScope", description="The scope in which the holding's instrument is in.")
instrument_uid: constr(strict=True, min_length=1) = Field(..., alias="instrumentUid", description="The unique Lusid Instrument Id (LUID) of the instrument that the holding is in.")
sub_holding_keys: Optional[Dict[str, PerpetualProperty]] = Field(None, alias="subHoldingKeys", description="The sub-holding properties which identify the holding. Each property will be from the 'Transaction' domain. These are configured on a transaction portfolio.")
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="The properties which have been requested to be decorated onto the holding. These will be from the 'Instrument' or 'Holding' domain.")
holding_type: constr(strict=True, min_length=1) = Field(..., alias="holdingType", description="The code for the type of the holding e.g. P, B, C, R, F etc.")
units: Union[StrictFloat, StrictInt] = Field(..., description="The total number of units of the holding.")
settled_units: Union[StrictFloat, StrictInt] = Field(..., alias="settledUnits", description="The total number of settled units of the holding.")
cost: CurrencyAndAmount = Field(...)
cost_portfolio_ccy: CurrencyAndAmount = Field(..., alias="costPortfolioCcy")
transaction: Optional[Transaction] = None
currency: Optional[StrictStr] = Field(None, description="The holding currency.")
holding_type_name: Optional[StrictStr] = Field(None, alias="holdingTypeName", description="The decoded type of the holding e.g. Position, Balance, CashCommitment, Receivable, ForwardFX etc.")
holding_id: Optional[StrictInt] = Field(None, alias="holdingId", description="A single identifier for the holding within the portfolio. The holdingId is constructed from the LusidInstrumentId, sub-holding keys and currrency and is unique within the portfolio.")
notional_cost: Optional[CurrencyAndAmount] = Field(None, alias="notionalCost")
amortised_cost: Optional[CurrencyAndAmount] = Field(None, alias="amortisedCost")
amortised_cost_portfolio_ccy: Optional[CurrencyAndAmount] = Field(None, alias="amortisedCostPortfolioCcy")
variation_margin: Optional[CurrencyAndAmount] = Field(None, alias="variationMargin")
variation_margin_portfolio_ccy: Optional[CurrencyAndAmount] = Field(None, alias="variationMarginPortfolioCcy")
settlement_schedule: Optional[conlist(SettlementSchedule)] = Field(None, alias="settlementSchedule", description="Where no. of days ahead has been specified, future dated settlements will be captured here.")
__properties = ["instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "holdingType", "units", "settledUnits", "cost", "costPortfolioCcy", "transaction", "currency", "holdingTypeName", "holdingId", "notionalCost", "amortisedCost", "amortisedCostPortfolioCcy", "variationMargin", "variationMarginPortfolioCcy", "settlementSchedule"]
[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) -> PortfolioHolding:
"""Create an instance of PortfolioHolding 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 sub_holding_keys (dict)
_field_dict = {}
if self.sub_holding_keys:
for _key in self.sub_holding_keys:
if self.sub_holding_keys[_key]:
_field_dict[_key] = self.sub_holding_keys[_key].to_dict()
_dict['subHoldingKeys'] = _field_dict
# override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
_field_dict = {}
if self.properties:
for _key in self.properties:
if self.properties[_key]:
_field_dict[_key] = self.properties[_key].to_dict()
_dict['properties'] = _field_dict
# override the default output from pydantic by calling `to_dict()` of cost
if self.cost:
_dict['cost'] = self.cost.to_dict()
# override the default output from pydantic by calling `to_dict()` of cost_portfolio_ccy
if self.cost_portfolio_ccy:
_dict['costPortfolioCcy'] = self.cost_portfolio_ccy.to_dict()
# override the default output from pydantic by calling `to_dict()` of transaction
if self.transaction:
_dict['transaction'] = self.transaction.to_dict()
# override the default output from pydantic by calling `to_dict()` of notional_cost
if self.notional_cost:
_dict['notionalCost'] = self.notional_cost.to_dict()
# override the default output from pydantic by calling `to_dict()` of amortised_cost
if self.amortised_cost:
_dict['amortisedCost'] = self.amortised_cost.to_dict()
# override the default output from pydantic by calling `to_dict()` of amortised_cost_portfolio_ccy
if self.amortised_cost_portfolio_ccy:
_dict['amortisedCostPortfolioCcy'] = self.amortised_cost_portfolio_ccy.to_dict()
# override the default output from pydantic by calling `to_dict()` of variation_margin
if self.variation_margin:
_dict['variationMargin'] = self.variation_margin.to_dict()
# override the default output from pydantic by calling `to_dict()` of variation_margin_portfolio_ccy
if self.variation_margin_portfolio_ccy:
_dict['variationMarginPortfolioCcy'] = self.variation_margin_portfolio_ccy.to_dict()
# override the default output from pydantic by calling `to_dict()` of each item in settlement_schedule (list)
_items = []
if self.settlement_schedule:
for _item in self.settlement_schedule:
if _item:
_items.append(_item.to_dict())
_dict['settlementSchedule'] = _items
# set to None if instrument_scope (nullable) is None
# and __fields_set__ contains the field
if self.instrument_scope is None and "instrument_scope" in self.__fields_set__:
_dict['instrumentScope'] = None
# set to None if sub_holding_keys (nullable) is None
# and __fields_set__ contains the field
if self.sub_holding_keys is None and "sub_holding_keys" in self.__fields_set__:
_dict['subHoldingKeys'] = None
# set to None if properties (nullable) is None
# and __fields_set__ contains the field
if self.properties is None and "properties" in self.__fields_set__:
_dict['properties'] = None
# set to None if currency (nullable) is None
# and __fields_set__ contains the field
if self.currency is None and "currency" in self.__fields_set__:
_dict['currency'] = None
# set to None if holding_type_name (nullable) is None
# and __fields_set__ contains the field
if self.holding_type_name is None and "holding_type_name" in self.__fields_set__:
_dict['holdingTypeName'] = None
# set to None if holding_id (nullable) is None
# and __fields_set__ contains the field
if self.holding_id is None and "holding_id" in self.__fields_set__:
_dict['holdingId'] = None
# set to None if settlement_schedule (nullable) is None
# and __fields_set__ contains the field
if self.settlement_schedule is None and "settlement_schedule" in self.__fields_set__:
_dict['settlementSchedule'] = None
return _dict
[docs]
@classmethod
def from_dict(cls, obj: dict) -> PortfolioHolding:
"""Create an instance of PortfolioHolding from a dict"""
if obj is None:
return None
if not isinstance(obj, dict):
return PortfolioHolding.parse_obj(obj)
_obj = PortfolioHolding.parse_obj({
"instrument_scope": obj.get("instrumentScope"),
"instrument_uid": obj.get("instrumentUid"),
"sub_holding_keys": dict(
(_k, PerpetualProperty.from_dict(_v))
for _k, _v in obj.get("subHoldingKeys").items()
)
if obj.get("subHoldingKeys") is not None
else None,
"properties": dict(
(_k, ModelProperty.from_dict(_v))
for _k, _v in obj.get("properties").items()
)
if obj.get("properties") is not None
else None,
"holding_type": obj.get("holdingType"),
"units": obj.get("units"),
"settled_units": obj.get("settledUnits"),
"cost": CurrencyAndAmount.from_dict(obj.get("cost")) if obj.get("cost") is not None else None,
"cost_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("costPortfolioCcy")) if obj.get("costPortfolioCcy") is not None else None,
"transaction": Transaction.from_dict(obj.get("transaction")) if obj.get("transaction") is not None else None,
"currency": obj.get("currency"),
"holding_type_name": obj.get("holdingTypeName"),
"holding_id": obj.get("holdingId"),
"notional_cost": CurrencyAndAmount.from_dict(obj.get("notionalCost")) if obj.get("notionalCost") is not None else None,
"amortised_cost": CurrencyAndAmount.from_dict(obj.get("amortisedCost")) if obj.get("amortisedCost") is not None else None,
"amortised_cost_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("amortisedCostPortfolioCcy")) if obj.get("amortisedCostPortfolioCcy") is not None else None,
"variation_margin": CurrencyAndAmount.from_dict(obj.get("variationMargin")) if obj.get("variationMargin") is not None else None,
"variation_margin_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("variationMarginPortfolioCcy")) if obj.get("variationMarginPortfolioCcy") is not None else None,
"settlement_schedule": [SettlementSchedule.from_dict(_item) for _item in obj.get("settlementSchedule")] if obj.get("settlementSchedule") is not None else None
})
return _obj