lusid-sdk 2.1.697__py3-none-any.whl → 2.1.698__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/__init__.py +10 -0
- lusid/api/__init__.py +2 -0
- lusid/api/identifier_definitions_api.py +960 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +8 -0
- lusid/models/create_identifier_definition_request.py +189 -0
- lusid/models/identifier_definition.py +192 -0
- lusid/models/paged_resource_list_of_identifier_definition.py +121 -0
- lusid/models/update_identifier_definition_request.py +146 -0
- {lusid_sdk-2.1.697.dist-info → lusid_sdk-2.1.698.dist-info}/METADATA +10 -1
- {lusid_sdk-2.1.697.dist-info → lusid_sdk-2.1.698.dist-info}/RECORD +12 -7
- {lusid_sdk-2.1.697.dist-info → lusid_sdk-2.1.698.dist-info}/WHEEL +0 -0
@@ -0,0 +1,146 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
LUSID API
|
5
|
+
|
6
|
+
FINBOURNE Technology # noqa: E501
|
7
|
+
|
8
|
+
Contact: info@finbourne.com
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
"""
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
|
21
|
+
from typing import Any, Dict, Optional
|
22
|
+
from pydantic.v1 import BaseModel, Field, constr, validator
|
23
|
+
from lusid.models.model_property import ModelProperty
|
24
|
+
|
25
|
+
class UpdateIdentifierDefinitionRequest(BaseModel):
|
26
|
+
"""
|
27
|
+
UpdateIdentifierDefinitionRequest
|
28
|
+
"""
|
29
|
+
hierarchy_level: Optional[constr(strict=True, max_length=512, min_length=1)] = Field(None, alias="hierarchyLevel", description="Optional metadata associated with the identifier definition.")
|
30
|
+
display_name: Optional[constr(strict=True, max_length=256, min_length=1)] = Field(None, alias="displayName", description="A display name for the identifier. E.g. Figi.")
|
31
|
+
description: Optional[constr(strict=True, max_length=1024, min_length=0)] = Field(None, description="An optional description for the identifier.")
|
32
|
+
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the identifier definition.")
|
33
|
+
__properties = ["hierarchyLevel", "displayName", "description", "properties"]
|
34
|
+
|
35
|
+
@validator('hierarchy_level')
|
36
|
+
def hierarchy_level_validate_regular_expression(cls, value):
|
37
|
+
"""Validates the regular expression"""
|
38
|
+
if value is None:
|
39
|
+
return value
|
40
|
+
|
41
|
+
if not re.match(r"^[\s\S]*$", value):
|
42
|
+
raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
|
43
|
+
return value
|
44
|
+
|
45
|
+
@validator('display_name')
|
46
|
+
def display_name_validate_regular_expression(cls, value):
|
47
|
+
"""Validates the regular expression"""
|
48
|
+
if value is None:
|
49
|
+
return value
|
50
|
+
|
51
|
+
if not re.match(r"^[^\\<>&\"]+$", value):
|
52
|
+
raise ValueError(r"must validate the regular expression /^[^\\<>&\"]+$/")
|
53
|
+
return value
|
54
|
+
|
55
|
+
@validator('description')
|
56
|
+
def description_validate_regular_expression(cls, value):
|
57
|
+
"""Validates the regular expression"""
|
58
|
+
if value is None:
|
59
|
+
return value
|
60
|
+
|
61
|
+
if not re.match(r"^[\s\S]*$", value):
|
62
|
+
raise ValueError(r"must validate the regular expression /^[\s\S]*$/")
|
63
|
+
return value
|
64
|
+
|
65
|
+
class Config:
|
66
|
+
"""Pydantic configuration"""
|
67
|
+
allow_population_by_field_name = True
|
68
|
+
validate_assignment = True
|
69
|
+
|
70
|
+
def __str__(self):
|
71
|
+
"""For `print` and `pprint`"""
|
72
|
+
return pprint.pformat(self.dict(by_alias=False))
|
73
|
+
|
74
|
+
def __repr__(self):
|
75
|
+
"""For `print` and `pprint`"""
|
76
|
+
return self.to_str()
|
77
|
+
|
78
|
+
def to_str(self) -> str:
|
79
|
+
"""Returns the string representation of the model using alias"""
|
80
|
+
return pprint.pformat(self.dict(by_alias=True))
|
81
|
+
|
82
|
+
def to_json(self) -> str:
|
83
|
+
"""Returns the JSON representation of the model using alias"""
|
84
|
+
return json.dumps(self.to_dict())
|
85
|
+
|
86
|
+
@classmethod
|
87
|
+
def from_json(cls, json_str: str) -> UpdateIdentifierDefinitionRequest:
|
88
|
+
"""Create an instance of UpdateIdentifierDefinitionRequest from a JSON string"""
|
89
|
+
return cls.from_dict(json.loads(json_str))
|
90
|
+
|
91
|
+
def to_dict(self):
|
92
|
+
"""Returns the dictionary representation of the model using alias"""
|
93
|
+
_dict = self.dict(by_alias=True,
|
94
|
+
exclude={
|
95
|
+
},
|
96
|
+
exclude_none=True)
|
97
|
+
# override the default output from pydantic by calling `to_dict()` of each value in properties (dict)
|
98
|
+
_field_dict = {}
|
99
|
+
if self.properties:
|
100
|
+
for _key in self.properties:
|
101
|
+
if self.properties[_key]:
|
102
|
+
_field_dict[_key] = self.properties[_key].to_dict()
|
103
|
+
_dict['properties'] = _field_dict
|
104
|
+
# set to None if hierarchy_level (nullable) is None
|
105
|
+
# and __fields_set__ contains the field
|
106
|
+
if self.hierarchy_level is None and "hierarchy_level" in self.__fields_set__:
|
107
|
+
_dict['hierarchyLevel'] = None
|
108
|
+
|
109
|
+
# set to None if display_name (nullable) is None
|
110
|
+
# and __fields_set__ contains the field
|
111
|
+
if self.display_name is None and "display_name" in self.__fields_set__:
|
112
|
+
_dict['displayName'] = None
|
113
|
+
|
114
|
+
# set to None if description (nullable) is None
|
115
|
+
# and __fields_set__ contains the field
|
116
|
+
if self.description is None and "description" in self.__fields_set__:
|
117
|
+
_dict['description'] = None
|
118
|
+
|
119
|
+
# set to None if properties (nullable) is None
|
120
|
+
# and __fields_set__ contains the field
|
121
|
+
if self.properties is None and "properties" in self.__fields_set__:
|
122
|
+
_dict['properties'] = None
|
123
|
+
|
124
|
+
return _dict
|
125
|
+
|
126
|
+
@classmethod
|
127
|
+
def from_dict(cls, obj: dict) -> UpdateIdentifierDefinitionRequest:
|
128
|
+
"""Create an instance of UpdateIdentifierDefinitionRequest from a dict"""
|
129
|
+
if obj is None:
|
130
|
+
return None
|
131
|
+
|
132
|
+
if not isinstance(obj, dict):
|
133
|
+
return UpdateIdentifierDefinitionRequest.parse_obj(obj)
|
134
|
+
|
135
|
+
_obj = UpdateIdentifierDefinitionRequest.parse_obj({
|
136
|
+
"hierarchy_level": obj.get("hierarchyLevel"),
|
137
|
+
"display_name": obj.get("displayName"),
|
138
|
+
"description": obj.get("description"),
|
139
|
+
"properties": dict(
|
140
|
+
(_k, ModelProperty.from_dict(_v))
|
141
|
+
for _k, _v in obj.get("properties").items()
|
142
|
+
)
|
143
|
+
if obj.get("properties") is not None
|
144
|
+
else None
|
145
|
+
})
|
146
|
+
return _obj
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.698
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -286,6 +286,11 @@ Class | Method | HTTP request | Description
|
|
286
286
|
*GroupReconciliationsApi* | [**run_reconciliation**](docs/GroupReconciliationsApi.md#run_reconciliation) | **POST** /api/reconciliations/groupreconciliationdefinitions/{scope}/{code}/$run | [EXPERIMENTAL] RunReconciliation: Runs a Group Reconciliation
|
287
287
|
*GroupReconciliationsApi* | [**update_comparison_ruleset**](docs/GroupReconciliationsApi.md#update_comparison_ruleset) | **PUT** /api/reconciliations/comparisonrulesets/{scope}/{code} | [EXPERIMENTAL] UpdateComparisonRuleset: Update Group Reconciliation Comparison Ruleset defined by scope and code
|
288
288
|
*GroupReconciliationsApi* | [**update_group_reconciliation_definition**](docs/GroupReconciliationsApi.md#update_group_reconciliation_definition) | **PUT** /api/reconciliations/groupreconciliationdefinitions/{scope}/{code} | [EXPERIMENTAL] UpdateGroupReconciliationDefinition: Update group reconciliation definition
|
289
|
+
*IdentifierDefinitionsApi* | [**create_identifier_definition**](docs/IdentifierDefinitionsApi.md#create_identifier_definition) | **POST** /api/identifierdefinitions | [EXPERIMENTAL] CreateIdentifierDefinition: Create an Identifier Definition
|
290
|
+
*IdentifierDefinitionsApi* | [**delete_identifier_definition**](docs/IdentifierDefinitionsApi.md#delete_identifier_definition) | **DELETE** /api/identifierdefinitions/{domain}/{identifierScope}/{identifierType} | [EXPERIMENTAL] DeleteIdentifierDefinition: Delete a particular Identifier Definition
|
291
|
+
*IdentifierDefinitionsApi* | [**get_identifier_definition**](docs/IdentifierDefinitionsApi.md#get_identifier_definition) | **GET** /api/identifierdefinitions/{domain}/{identifierScope}/{identifierType} | [EXPERIMENTAL] GetIdentifierDefinition: Get a single Identifier Definition
|
292
|
+
*IdentifierDefinitionsApi* | [**list_identifier_definitions**](docs/IdentifierDefinitionsApi.md#list_identifier_definitions) | **GET** /api/identifierdefinitions | [EXPERIMENTAL] ListIdentifierDefinitions: List Identifier Definitions
|
293
|
+
*IdentifierDefinitionsApi* | [**update_identifier_definition**](docs/IdentifierDefinitionsApi.md#update_identifier_definition) | **PUT** /api/identifierdefinitions/{domain}/{identifierScope}/{identifierType} | [EXPERIMENTAL] UpdateIdentifierDefinition: Update Identifier Definition defined by domain, identifierScope, and identifierType
|
289
294
|
*InstrumentEventTypesApi* | [**create_transaction_template**](docs/InstrumentEventTypesApi.md#create_transaction_template) | **POST** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EARLY ACCESS] CreateTransactionTemplate: Create Transaction Template
|
290
295
|
*InstrumentEventTypesApi* | [**delete_transaction_template**](docs/InstrumentEventTypesApi.md#delete_transaction_template) | **DELETE** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EARLY ACCESS] DeleteTransactionTemplate: Delete Transaction Template
|
291
296
|
*InstrumentEventTypesApi* | [**get_transaction_template**](docs/InstrumentEventTypesApi.md#get_transaction_template) | **GET** /api/instrumenteventtypes/{instrumentEventType}/transactiontemplates/{instrumentType}/{scope} | [EARLY ACCESS] GetTransactionTemplate: Get Transaction Template
|
@@ -881,6 +886,7 @@ Class | Method | HTTP request | Description
|
|
881
886
|
- [CreateDerivedTransactionPortfolioRequest](docs/CreateDerivedTransactionPortfolioRequest.md)
|
882
887
|
- [CreateGroupReconciliationComparisonRulesetRequest](docs/CreateGroupReconciliationComparisonRulesetRequest.md)
|
883
888
|
- [CreateGroupReconciliationDefinitionRequest](docs/CreateGroupReconciliationDefinitionRequest.md)
|
889
|
+
- [CreateIdentifierDefinitionRequest](docs/CreateIdentifierDefinitionRequest.md)
|
884
890
|
- [CreatePortfolioDetails](docs/CreatePortfolioDetails.md)
|
885
891
|
- [CreatePortfolioGroupRequest](docs/CreatePortfolioGroupRequest.md)
|
886
892
|
- [CreatePropertyDefinitionRequest](docs/CreatePropertyDefinitionRequest.md)
|
@@ -1137,6 +1143,7 @@ Class | Method | HTTP request | Description
|
|
1137
1143
|
- [HoldingsAdjustmentHeader](docs/HoldingsAdjustmentHeader.md)
|
1138
1144
|
- [IUnitDefinitionDto](docs/IUnitDefinitionDto.md)
|
1139
1145
|
- [IdSelectorDefinition](docs/IdSelectorDefinition.md)
|
1146
|
+
- [IdentifierDefinition](docs/IdentifierDefinition.md)
|
1140
1147
|
- [IdentifierPartSchema](docs/IdentifierPartSchema.md)
|
1141
1148
|
- [IndexConvention](docs/IndexConvention.md)
|
1142
1149
|
- [IndexModelOptions](docs/IndexModelOptions.md)
|
@@ -1329,6 +1336,7 @@ Class | Method | HTTP request | Description
|
|
1329
1336
|
- [PagedResourceListOfGroupReconciliationComparisonResult](docs/PagedResourceListOfGroupReconciliationComparisonResult.md)
|
1330
1337
|
- [PagedResourceListOfGroupReconciliationComparisonRuleset](docs/PagedResourceListOfGroupReconciliationComparisonRuleset.md)
|
1331
1338
|
- [PagedResourceListOfGroupReconciliationDefinition](docs/PagedResourceListOfGroupReconciliationDefinition.md)
|
1339
|
+
- [PagedResourceListOfIdentifierDefinition](docs/PagedResourceListOfIdentifierDefinition.md)
|
1332
1340
|
- [PagedResourceListOfInstrument](docs/PagedResourceListOfInstrument.md)
|
1333
1341
|
- [PagedResourceListOfInstrumentEventHolder](docs/PagedResourceListOfInstrumentEventHolder.md)
|
1334
1342
|
- [PagedResourceListOfInstrumentEventInstruction](docs/PagedResourceListOfInstrumentEventInstruction.md)
|
@@ -1730,6 +1738,7 @@ Class | Method | HTTP request | Description
|
|
1730
1738
|
- [UpdateFeeTypeRequest](docs/UpdateFeeTypeRequest.md)
|
1731
1739
|
- [UpdateGroupReconciliationComparisonRulesetRequest](docs/UpdateGroupReconciliationComparisonRulesetRequest.md)
|
1732
1740
|
- [UpdateGroupReconciliationDefinitionRequest](docs/UpdateGroupReconciliationDefinitionRequest.md)
|
1741
|
+
- [UpdateIdentifierDefinitionRequest](docs/UpdateIdentifierDefinitionRequest.md)
|
1733
1742
|
- [UpdateInstrumentIdentifierRequest](docs/UpdateInstrumentIdentifierRequest.md)
|
1734
1743
|
- [UpdateOrdersResponse](docs/UpdateOrdersResponse.md)
|
1735
1744
|
- [UpdatePlacementsResponse](docs/UpdatePlacementsResponse.md)
|
@@ -1,5 +1,5 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
2
|
-
lusid/api/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=HKd5_OLxas5C2QEBrsZcGTgFDQV-wVh_koL4-cOPt4s,133648
|
2
|
+
lusid/api/__init__.py,sha256=b9BsX0qfl4jZSlEid6ihux1dyYgNwjtKQZk23veBuc0,6204
|
3
3
|
lusid/api/abor_api.py,sha256=6bAhCnwf45obpEc3fKa6mt4GzpJsZOh4Ir45I55kBmw,171300
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=ug36aCVNswcZuRZXSNl1rq9yDrceobDdbVio8EG3oPQ,76011
|
5
5
|
lusid/api/address_key_definition_api.py,sha256=jlvpmsmvVedaMNr1sRMNj2Kj4qArNtZxXKXD0DvRUwM,31574
|
@@ -29,6 +29,7 @@ lusid/api/fee_types_api.py,sha256=vcDM_7QOAX0LjNz5Wr7lTV_LVYtrmhZ8-59-ZRjL2Sg,55
|
|
29
29
|
lusid/api/fund_configuration_api.py,sha256=sItl8nbm7PsJYVZYMLWKtGQG80y_y6LP7D_r6NjxbOc,74272
|
30
30
|
lusid/api/funds_api.py,sha256=0vAiyCxrTql2FH43qRDU_Kbt14OY2UGWuYC2VEbEg9E,323157
|
31
31
|
lusid/api/group_reconciliations_api.py,sha256=0zuSvNM9c61ZhzdxSCVen_y3-y9gPeykflxgNzv9-8U,167598
|
32
|
+
lusid/api/identifier_definitions_api.py,sha256=9rx1r5iCcoB9rvlEBbrP1e3HPXsma4ATNeC9svvLUSg,65365
|
32
33
|
lusid/api/instrument_event_types_api.py,sha256=uqt9YusZzm6sDSxxT7HgC_QSZre1qTblR9N_EHBeB0Q,81296
|
33
34
|
lusid/api/instrument_events_api.py,sha256=L4zPiecVr3UBwnKXAtbTGMVWPv3yeS9VSSSaBWQx-XM,58350
|
34
35
|
lusid/api/instruments_api.py,sha256=bsFgBfz5dPAd4uNxrWn5m0m8B7ne85z10jvVagL3FWs,293269
|
@@ -73,7 +74,7 @@ lusid/api/translation_api.py,sha256=nIyuLncCvVC5k2d7Nm32zR8AQ1dkrVm1OThkmELY_OM,
|
|
73
74
|
lusid/api/workspace_api.py,sha256=Yox1q7TDY-_O3HF-N8g5kGuNgp4unWvlSZmRZ6MNZO0,196701
|
74
75
|
lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
|
75
76
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
76
|
-
lusid/configuration.py,sha256=
|
77
|
+
lusid/configuration.py,sha256=r1n4plIcPjqsGVLtd4mndnqBXRHY87oOi-hP_eD07VM,17972
|
77
78
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
78
79
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
79
80
|
lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
|
@@ -88,7 +89,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
|
|
88
89
|
lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
|
89
90
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
90
91
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
91
|
-
lusid/models/__init__.py,sha256=
|
92
|
+
lusid/models/__init__.py,sha256=10ad5yA9IC4-CGQ_lPL9FrpDSXYW1duCXmTdusH-MjM,126412
|
92
93
|
lusid/models/a2_b_breakdown.py,sha256=ReKFxiFaYdyMSV7Iv4sR4NxQsePvnVrb5po3UHP8f20,3160
|
93
94
|
lusid/models/a2_b_category.py,sha256=cMKeavBQuk78aBXKcFVxpKjh3Td_IYklpSyxxz_DgHk,2938
|
94
95
|
lusid/models/a2_b_data_record.py,sha256=fkR0nJazNrD3S0PaKEbPiza2EQ8j11p0EGa3dqeOsVs,9950
|
@@ -316,6 +317,7 @@ lusid/models/create_derived_property_definition_request.py,sha256=ZvmIL-w-64QtwS
|
|
316
317
|
lusid/models/create_derived_transaction_portfolio_request.py,sha256=osA-vE6uHVZZBbFTcBp-lk4tu7c42D2bvl2OjWrEka0,11979
|
317
318
|
lusid/models/create_group_reconciliation_comparison_ruleset_request.py,sha256=KbLZ5lU55vKal6EJPG7dtDbmi7HkbZ-Erj7ARajm9Ws,4805
|
318
319
|
lusid/models/create_group_reconciliation_definition_request.py,sha256=XFpEaXA2BX_QGIJjaYwRpTsw-vLfhzzXJpe1UR-ZMAU,6436
|
320
|
+
lusid/models/create_identifier_definition_request.py,sha256=LZaWmhAttMG-D1sI3PRUN_9ZGFP0NYry9Xw6VE2ZHgE,12794
|
319
321
|
lusid/models/create_portfolio_details.py,sha256=8AXC6c77TdnunEQLmsaNmZBt_VXCNc7IKZwfT2dzKvs,2577
|
320
322
|
lusid/models/create_portfolio_group_request.py,sha256=ZASp0MDvXWLfdUzc6QPLtEI1YF2ObIY-s7qGg-uF6GQ,6345
|
321
323
|
lusid/models/create_property_definition_request.py,sha256=75E6B3_dAgiRgQsQwan2yoApXOW6rTUHOwZojVxJ-ns,9802
|
@@ -572,6 +574,7 @@ lusid/models/holdings_adjustment.py,sha256=ktezPNxrdSzqTMiJ9iJGREgmQuuSOOTMvXjgC
|
|
572
574
|
lusid/models/holdings_adjustment_header.py,sha256=rGqOxioQieidEspsYmlOcNgzx6O9Ow6gkXdEgf9iRc8,4352
|
573
575
|
lusid/models/i_unit_definition_dto.py,sha256=kJ_EZlOHIThBpwh0sJW7Q87HLY5xXZa4OX_mG4CRWJk,3633
|
574
576
|
lusid/models/id_selector_definition.py,sha256=8LIoB3tI_TK7bpK-x4G7ZF8LDJvgYDn52EwgsFhHTZ8,3371
|
577
|
+
lusid/models/identifier_definition.py,sha256=juHa_WQoIMUQisVFUe7UwRUnPv0cY-BtkOXzmZE5uUc,13073
|
575
578
|
lusid/models/identifier_part_schema.py,sha256=ceFW71yP73WecX4R3z-6moxvLm15OK8Dub2kHfsxtYU,3296
|
576
579
|
lusid/models/index_convention.py,sha256=Q0_C5cTt1OXDFcVyOvQo11rmwsSJczODzc3-Ud1KT5c,6149
|
577
580
|
lusid/models/index_model_options.py,sha256=xOr6To8Kyu0uWC6qlw01DkJyAsmcfQFSyaiPBpjX2Ws,3920
|
@@ -764,6 +767,7 @@ lusid/models/paged_resource_list_of_general_ledger_profile_response.py,sha256=ru
|
|
764
767
|
lusid/models/paged_resource_list_of_group_reconciliation_comparison_result.py,sha256=x3KsLnXmsdM8mwCax-bWM5dbyDZ5M7TNhJ2HUy2dFRY,4610
|
765
768
|
lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py,sha256=H1VwIN3OjSinvjcVISFwA1XuO_IjrUnZRroqgdgQ8AE,4622
|
766
769
|
lusid/models/paged_resource_list_of_group_reconciliation_definition.py,sha256=FzJkTQi6VhF6NyCJyvhJN4mv5rZV4DVu5I2tYAD9Hx4,4537
|
770
|
+
lusid/models/paged_resource_list_of_identifier_definition.py,sha256=XdplN8LUe1Ifi-byisSaYCLHKz4W3XYLlqovKNI1rI4,4428
|
767
771
|
lusid/models/paged_resource_list_of_instrument.py,sha256=AWorft0wBdBAktpVXtjnOmbnyxwJsHaJ4H97pn2jAqw,4307
|
768
772
|
lusid/models/paged_resource_list_of_instrument_event_holder.py,sha256=eRgmZIG_axq4bpPQACyCp4vdJ5WAm4dcOArZFlnnZsk,4441
|
769
773
|
lusid/models/paged_resource_list_of_instrument_event_instruction.py,sha256=HnoP7rCENd3Dpd7A5SVYlmQJ9EYVJ5ryYZS_i5thA44,4501
|
@@ -1165,6 +1169,7 @@ lusid/models/update_derived_property_definition_request.py,sha256=ddkb-ebYHi8s0T
|
|
1165
1169
|
lusid/models/update_fee_type_request.py,sha256=roEBi0ntGikDMEErAr60jdVPlcR8AnTDMDGELv54Lk4,3849
|
1166
1170
|
lusid/models/update_group_reconciliation_comparison_ruleset_request.py,sha256=ixIApWf1QcyKu4WMS5k8BfFrFwCNeSjMUlDKHg2TNto,4480
|
1167
1171
|
lusid/models/update_group_reconciliation_definition_request.py,sha256=F1499s-xgkYHG093yYRZsRDoep5R3RFg6HutSHEHmWw,6107
|
1172
|
+
lusid/models/update_identifier_definition_request.py,sha256=pwwz7J9jS5wpPf6KP8s6nctUgGEV4sGdHQqTdYcjC34,5575
|
1168
1173
|
lusid/models/update_instrument_identifier_request.py,sha256=9SUPmjKDgxZ01vqiju-dUtNN7RJk5763R9VaPZdTgJs,3267
|
1169
1174
|
lusid/models/update_orders_response.py,sha256=Ilc3LKM7AX8k1rQGzBSAtVsO_MZl1OqY7ykwB10WHLE,6174
|
1170
1175
|
lusid/models/update_placements_response.py,sha256=Jab1PXsLHQUwplz4xbALyFZMcbdneXA_JXdzj67FEEk,6230
|
@@ -1268,6 +1273,6 @@ lusid/models/workspace_update_request.py,sha256=5N7j21uF9XV75Sl3oJbsSOKT5PrQEx3y
|
|
1268
1273
|
lusid/models/yield_curve_data.py,sha256=vtOzY4t2lgHJUWcna9dEKnuZ_tinolyb8IAFPB23DZ0,6543
|
1269
1274
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1270
1275
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1271
|
-
lusid_sdk-2.1.
|
1272
|
-
lusid_sdk-2.1.
|
1273
|
-
lusid_sdk-2.1.
|
1276
|
+
lusid_sdk-2.1.698.dist-info/METADATA,sha256=-Lm0cilO305T74-3mD8_Yg4kx37t3PcWtuwMFre00lo,219292
|
1277
|
+
lusid_sdk-2.1.698.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1278
|
+
lusid_sdk-2.1.698.dist-info/RECORD,,
|
File without changes
|