lusid-sdk 2.1.844__py3-none-any.whl → 2.1.845__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/configuration.py +1 -1
- lusid/models/group_reconciliation_result_types.py +13 -5
- {lusid_sdk-2.1.844.dist-info → lusid_sdk-2.1.845.dist-info}/METADATA +1 -1
- {lusid_sdk-2.1.844.dist-info → lusid_sdk-2.1.845.dist-info}/RECORD +5 -5
- {lusid_sdk-2.1.844.dist-info → lusid_sdk-2.1.845.dist-info}/WHEEL +0 -0
lusid/configuration.py
CHANGED
@@ -445,7 +445,7 @@ class Configuration:
|
|
445
445
|
return "Python SDK Debug Report:\n"\
|
446
446
|
"OS: {env}\n"\
|
447
447
|
"Python Version: {pyversion}\n"\
|
448
|
-
"Version of the API: 0.11.
|
448
|
+
"Version of the API: 0.11.7931\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -18,7 +18,7 @@ import re # noqa: F401
|
|
18
18
|
import json
|
19
19
|
|
20
20
|
|
21
|
-
from typing import Any, Dict
|
21
|
+
from typing import Any, Dict, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictInt
|
23
23
|
from lusid.models.link import Link
|
24
24
|
|
@@ -32,9 +32,11 @@ class GroupReconciliationResultTypes(BaseModel):
|
|
32
32
|
link_partial_matches: Link = Field(..., alias="linkPartialMatches")
|
33
33
|
count_break: StrictInt = Field(..., alias="countBreak", description="The number of comparison results of resultType \"Break\" with this instanceId and reconciliationType")
|
34
34
|
link_breaks: Link = Field(..., alias="linkBreaks")
|
35
|
-
count_not_found: StrictInt = Field(
|
36
|
-
link_not_found: Link = Field(
|
37
|
-
|
35
|
+
count_not_found: Optional[StrictInt] = Field(None, alias="countNotFound", description="The number of comparison results of resultType \"Resolved\" with this instanceId and reconciliationType")
|
36
|
+
link_not_found: Optional[Link] = Field(None, alias="linkNotFound")
|
37
|
+
count_resolved: Optional[StrictInt] = Field(None, alias="countResolved", description="The number of comparison results of resultType \"Resolved\" with this instanceId and reconciliationType")
|
38
|
+
link_resolved: Optional[Link] = Field(None, alias="linkResolved")
|
39
|
+
__properties = ["countMatch", "linkMatches", "countPartialMatch", "linkPartialMatches", "countBreak", "linkBreaks", "countNotFound", "linkNotFound", "countResolved", "linkResolved"]
|
38
40
|
|
39
41
|
class Config:
|
40
42
|
"""Pydantic configuration"""
|
@@ -66,6 +68,7 @@ class GroupReconciliationResultTypes(BaseModel):
|
|
66
68
|
"""Returns the dictionary representation of the model using alias"""
|
67
69
|
_dict = self.dict(by_alias=True,
|
68
70
|
exclude={
|
71
|
+
"count_not_found",
|
69
72
|
},
|
70
73
|
exclude_none=True)
|
71
74
|
# override the default output from pydantic by calling `to_dict()` of link_matches
|
@@ -80,6 +83,9 @@ class GroupReconciliationResultTypes(BaseModel):
|
|
80
83
|
# override the default output from pydantic by calling `to_dict()` of link_not_found
|
81
84
|
if self.link_not_found:
|
82
85
|
_dict['linkNotFound'] = self.link_not_found.to_dict()
|
86
|
+
# override the default output from pydantic by calling `to_dict()` of link_resolved
|
87
|
+
if self.link_resolved:
|
88
|
+
_dict['linkResolved'] = self.link_resolved.to_dict()
|
83
89
|
return _dict
|
84
90
|
|
85
91
|
@classmethod
|
@@ -99,6 +105,8 @@ class GroupReconciliationResultTypes(BaseModel):
|
|
99
105
|
"count_break": obj.get("countBreak"),
|
100
106
|
"link_breaks": Link.from_dict(obj.get("linkBreaks")) if obj.get("linkBreaks") is not None else None,
|
101
107
|
"count_not_found": obj.get("countNotFound"),
|
102
|
-
"link_not_found": Link.from_dict(obj.get("linkNotFound")) if obj.get("linkNotFound") is not None else None
|
108
|
+
"link_not_found": Link.from_dict(obj.get("linkNotFound")) if obj.get("linkNotFound") is not None else None,
|
109
|
+
"count_resolved": obj.get("countResolved"),
|
110
|
+
"link_resolved": Link.from_dict(obj.get("linkResolved")) if obj.get("linkResolved") is not None else None
|
103
111
|
})
|
104
112
|
return _obj
|
@@ -77,7 +77,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
|
|
77
77
|
lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
|
78
78
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
79
79
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
80
|
-
lusid/configuration.py,sha256=
|
80
|
+
lusid/configuration.py,sha256=1pAvuW2I__-y1IdFvcVURBvjQRnd6qTl4JWVVJP2meQ,17972
|
81
81
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
82
82
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
83
83
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -572,7 +572,7 @@ lusid/models/group_reconciliation_definition_portfolio_entity_ids.py,sha256=Imtj
|
|
572
572
|
lusid/models/group_reconciliation_definition_recipe_ids.py,sha256=t1TVgjUqcrbrku86ZtF3w1Q1mwjzSFncx8FN7vIuq_w,2788
|
573
573
|
lusid/models/group_reconciliation_instance_id.py,sha256=bfwFkZkpVjLVf00Nwpq6iy08-9tZdDkzFJGrWWOpn3Q,2583
|
574
574
|
lusid/models/group_reconciliation_result_statuses.py,sha256=CPgWAMIUxk4OH7MECuiC8s5CPMQUqWq2u20iJGWzHr8,3993
|
575
|
-
lusid/models/group_reconciliation_result_types.py,sha256=
|
575
|
+
lusid/models/group_reconciliation_result_types.py,sha256=Du_YPSvVeXFY83V8cgFvejZ5bLXI4KnxP3STZ-U_ztQ,5456
|
576
576
|
lusid/models/group_reconciliation_review_statuses.py,sha256=ddujf0Qb4WU1AS_NhQ8uXKPI4T4OMrQ9gjXgcHi_HeI,4667
|
577
577
|
lusid/models/group_reconciliation_run_details.py,sha256=XQxycdz_cXCRdOoe3q-ydsjAb78JbshQ81qWoDwYgWw,2792
|
578
578
|
lusid/models/group_reconciliation_run_request.py,sha256=IaT_d1xXVHY-IDc8eFujfgawQxj0RscHdBjaSKYWBMI,2863
|
@@ -1328,6 +1328,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1328
1328
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1329
1329
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1330
1330
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1331
|
-
lusid_sdk-2.1.
|
1332
|
-
lusid_sdk-2.1.
|
1333
|
-
lusid_sdk-2.1.
|
1331
|
+
lusid_sdk-2.1.845.dist-info/METADATA,sha256=B8VfaMzG6qO80D1eeYSJHPTkh9DCW-f2Dyx-T-8PVR8,222326
|
1332
|
+
lusid_sdk-2.1.845.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1333
|
+
lusid_sdk-2.1.845.dist-info/RECORD,,
|
File without changes
|