lusid-sdk 2.1.821__py3-none-any.whl → 2.1.822__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/custom_data_model_identifier_type_specification_with_display_name.py +9 -2
- {lusid_sdk-2.1.821.dist-info → lusid_sdk-2.1.822.dist-info}/METADATA +1 -1
- {lusid_sdk-2.1.821.dist-info → lusid_sdk-2.1.822.dist-info}/RECORD +5 -5
- {lusid_sdk-2.1.821.dist-info → lusid_sdk-2.1.822.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.7897\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
@@ -28,7 +28,8 @@ class CustomDataModelIdentifierTypeSpecificationWithDisplayName(BaseModel):
|
|
28
28
|
display_name: Optional[StrictStr] = Field(None,alias="displayName", description="The display name of the property definition.")
|
29
29
|
identifier_key: StrictStr = Field(...,alias="identifierKey", description="The identifier type that is required/allowed on the bound entity.")
|
30
30
|
required: Optional[StrictBool] = Field(None, description="Whether identifier type is required or allowed.")
|
31
|
-
|
31
|
+
identifier_type: Optional[StrictStr] = Field(None,alias="identifierType", description="The name of the identifier type.")
|
32
|
+
__properties = ["displayName", "identifierKey", "required", "identifierType"]
|
32
33
|
|
33
34
|
class Config:
|
34
35
|
"""Pydantic configuration"""
|
@@ -67,6 +68,11 @@ class CustomDataModelIdentifierTypeSpecificationWithDisplayName(BaseModel):
|
|
67
68
|
if self.display_name is None and "display_name" in self.__fields_set__:
|
68
69
|
_dict['displayName'] = None
|
69
70
|
|
71
|
+
# set to None if identifier_type (nullable) is None
|
72
|
+
# and __fields_set__ contains the field
|
73
|
+
if self.identifier_type is None and "identifier_type" in self.__fields_set__:
|
74
|
+
_dict['identifierType'] = None
|
75
|
+
|
70
76
|
return _dict
|
71
77
|
|
72
78
|
@classmethod
|
@@ -81,6 +87,7 @@ class CustomDataModelIdentifierTypeSpecificationWithDisplayName(BaseModel):
|
|
81
87
|
_obj = CustomDataModelIdentifierTypeSpecificationWithDisplayName.parse_obj({
|
82
88
|
"display_name": obj.get("displayName"),
|
83
89
|
"identifier_key": obj.get("identifierKey"),
|
84
|
-
"required": obj.get("required")
|
90
|
+
"required": obj.get("required"),
|
91
|
+
"identifier_type": obj.get("identifierType")
|
85
92
|
})
|
86
93
|
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=Csh0kk81qG9wZYpqMrWSrKFPhX5emIqF5GWlAUjUbNA,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
|
@@ -367,7 +367,7 @@ lusid/models/custodian_accounts_upsert_response.py,sha256=JifiqVoKIwK73PUtx1nMR9
|
|
367
367
|
lusid/models/custom_data_model.py,sha256=A6sd_p6eT5c8ceOwdg-UqdCkfFN8EcpEdY-PQ00zwUQ,3676
|
368
368
|
lusid/models/custom_data_model_criteria.py,sha256=873vt--Yak9_SFcr7LpLBuj8HyJoYXFH-0EHB_SSHwE,6699
|
369
369
|
lusid/models/custom_data_model_identifier_type_specification.py,sha256=OmS062q5I172iV3vOcei9jJPIu_kFdHopaF6MW8OLy8,2596
|
370
|
-
lusid/models/custom_data_model_identifier_type_specification_with_display_name.py,sha256=
|
370
|
+
lusid/models/custom_data_model_identifier_type_specification_with_display_name.py,sha256=kosgFBwpz6ZcKmQu3iP4Z-hpvIRhe2gnnamFWXj5F1k,3585
|
371
371
|
lusid/models/custom_data_model_property_specification.py,sha256=vjSQOQdCzrMWJHINSv4_nd_pMLtELWolo_MzQ_XXN1Y,2528
|
372
372
|
lusid/models/custom_data_model_property_specification_with_display_name.py,sha256=cpZiO5nVXRbwrK-FeNeu8JOMkK3mx8LG9cFJUoF3IZA,3075
|
373
373
|
lusid/models/custom_entity_definition.py,sha256=BBQA8v8uJpwFuX-6rMWtQmEcQtEC_mFPSQjxVlnBg0c,5524
|
@@ -1323,6 +1323,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1323
1323
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1324
1324
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1325
1325
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1326
|
-
lusid_sdk-2.1.
|
1327
|
-
lusid_sdk-2.1.
|
1328
|
-
lusid_sdk-2.1.
|
1326
|
+
lusid_sdk-2.1.822.dist-info/METADATA,sha256=IEZQBqttvJbi_-rHLI99TG_X9VnfJdp2HtYfalbR1nI,221539
|
1327
|
+
lusid_sdk-2.1.822.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1328
|
+
lusid_sdk-2.1.822.dist-info/RECORD,,
|
File without changes
|