lusid-sdk 2.1.904__py3-none-any.whl → 2.1.905__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/models/adjust_holding_for_date_request.py +2 -8
- lusid/models/adjust_holding_request.py +2 -8
- lusid/models/cancel_single_holding_adjustment_request.py +2 -8
- lusid/models/holding_adjustment.py +2 -8
- lusid/models/holding_adjustment_with_date.py +2 -8
- lusid/models/portfolio_holding.py +2 -8
- {lusid_sdk-2.1.904.dist-info → lusid_sdk-2.1.905.dist-info}/METADATA +1 -1
- {lusid_sdk-2.1.904.dist-info → lusid_sdk-2.1.905.dist-info}/RECORD +9 -9
- {lusid_sdk-2.1.904.dist-info → lusid_sdk-2.1.905.dist-info}/WHEEL +0 -0
@@ -21,7 +21,6 @@ import json
|
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist, constr
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
|
-
from lusid.models.resource_id import ResourceId
|
25
24
|
from lusid.models.target_tax_lot_request import TargetTaxLotRequest
|
26
25
|
|
27
26
|
class AdjustHoldingForDateRequest(BaseModel):
|
@@ -34,8 +33,7 @@ class AdjustHoldingForDateRequest(BaseModel):
|
|
34
33
|
properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="Set of unique holding properties and associated values to store with the target holding. Each property must be from the 'Holding' domain.")
|
35
34
|
tax_lots: conlist(TargetTaxLotRequest) = Field(..., alias="taxLots", description="The tax-lots that together make up the target holding.")
|
36
35
|
currency: Optional[StrictStr] = Field(None,alias="currency", description="The Holding currency. This needs to be equal with the one on the TaxLot -> cost if one is specified")
|
37
|
-
|
38
|
-
__properties = ["effectiveAt", "instrumentIdentifiers", "subHoldingKeys", "properties", "taxLots", "currency", "custodianAccountId"]
|
36
|
+
__properties = ["effectiveAt", "instrumentIdentifiers", "subHoldingKeys", "properties", "taxLots", "currency"]
|
39
37
|
|
40
38
|
class Config:
|
41
39
|
"""Pydantic configuration"""
|
@@ -90,9 +88,6 @@ class AdjustHoldingForDateRequest(BaseModel):
|
|
90
88
|
if _item:
|
91
89
|
_items.append(_item.to_dict())
|
92
90
|
_dict['taxLots'] = _items
|
93
|
-
# override the default output from pydantic by calling `to_dict()` of custodian_account_id
|
94
|
-
if self.custodian_account_id:
|
95
|
-
_dict['custodianAccountId'] = self.custodian_account_id.to_dict()
|
96
91
|
# set to None if sub_holding_keys (nullable) is None
|
97
92
|
# and __fields_set__ contains the field
|
98
93
|
if self.sub_holding_keys is None and "sub_holding_keys" in self.__fields_set__:
|
@@ -135,7 +130,6 @@ class AdjustHoldingForDateRequest(BaseModel):
|
|
135
130
|
if obj.get("properties") is not None
|
136
131
|
else None,
|
137
132
|
"tax_lots": [TargetTaxLotRequest.from_dict(_item) for _item in obj.get("taxLots")] if obj.get("taxLots") is not None else None,
|
138
|
-
"currency": obj.get("currency")
|
139
|
-
"custodian_account_id": ResourceId.from_dict(obj.get("custodianAccountId")) if obj.get("custodianAccountId") is not None else None
|
133
|
+
"currency": obj.get("currency")
|
140
134
|
})
|
141
135
|
return _obj
|
@@ -21,7 +21,6 @@ import json
|
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
|
-
from lusid.models.resource_id import ResourceId
|
25
24
|
from lusid.models.target_tax_lot_request import TargetTaxLotRequest
|
26
25
|
|
27
26
|
class AdjustHoldingRequest(BaseModel):
|
@@ -33,8 +32,7 @@ class AdjustHoldingRequest(BaseModel):
|
|
33
32
|
properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="Set of unique holding properties and associated values to store with the target holding. Each property must be from the 'Holding' domain.")
|
34
33
|
tax_lots: conlist(TargetTaxLotRequest) = Field(..., alias="taxLots", description="The tax-lots that together make up the target holding.")
|
35
34
|
currency: Optional[StrictStr] = Field(None,alias="currency", description="The Holding currency. This needs to be equal with the one on the TaxLot -> cost if one is specified")
|
36
|
-
|
37
|
-
__properties = ["instrumentIdentifiers", "subHoldingKeys", "properties", "taxLots", "currency", "custodianAccountId"]
|
35
|
+
__properties = ["instrumentIdentifiers", "subHoldingKeys", "properties", "taxLots", "currency"]
|
38
36
|
|
39
37
|
class Config:
|
40
38
|
"""Pydantic configuration"""
|
@@ -89,9 +87,6 @@ class AdjustHoldingRequest(BaseModel):
|
|
89
87
|
if _item:
|
90
88
|
_items.append(_item.to_dict())
|
91
89
|
_dict['taxLots'] = _items
|
92
|
-
# override the default output from pydantic by calling `to_dict()` of custodian_account_id
|
93
|
-
if self.custodian_account_id:
|
94
|
-
_dict['custodianAccountId'] = self.custodian_account_id.to_dict()
|
95
90
|
# set to None if sub_holding_keys (nullable) is None
|
96
91
|
# and __fields_set__ contains the field
|
97
92
|
if self.sub_holding_keys is None and "sub_holding_keys" in self.__fields_set__:
|
@@ -133,7 +128,6 @@ class AdjustHoldingRequest(BaseModel):
|
|
133
128
|
if obj.get("properties") is not None
|
134
129
|
else None,
|
135
130
|
"tax_lots": [TargetTaxLotRequest.from_dict(_item) for _item in obj.get("taxLots")] if obj.get("taxLots") is not None else None,
|
136
|
-
"currency": obj.get("currency")
|
137
|
-
"custodian_account_id": ResourceId.from_dict(obj.get("custodianAccountId")) if obj.get("custodianAccountId") is not None else None
|
131
|
+
"currency": obj.get("currency")
|
138
132
|
})
|
139
133
|
return _obj
|
@@ -21,7 +21,6 @@ import json
|
|
21
21
|
from typing import Any, Dict, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
|
-
from lusid.models.resource_id import ResourceId
|
25
24
|
|
26
25
|
class CancelSingleHoldingAdjustmentRequest(BaseModel):
|
27
26
|
"""
|
@@ -30,8 +29,7 @@ class CancelSingleHoldingAdjustmentRequest(BaseModel):
|
|
30
29
|
instrument_identifiers: Dict[str, StrictStr] = Field(..., alias="instrumentIdentifiers", description="A set of instrument identifiers that can resolve the holding adjustment to a unique instrument.")
|
31
30
|
sub_holding_keys: Optional[Dict[str, PerpetualProperty]] = Field(None, alias="subHoldingKeys", description="The sub-holding properties which identify the holding. Each property must be from the 'Transaction' domain.")
|
32
31
|
currency: Optional[StrictStr] = Field(None,alias="currency", description="The Holding currency.")
|
33
|
-
|
34
|
-
__properties = ["instrumentIdentifiers", "subHoldingKeys", "currency", "custodianAccountId"]
|
32
|
+
__properties = ["instrumentIdentifiers", "subHoldingKeys", "currency"]
|
35
33
|
|
36
34
|
class Config:
|
37
35
|
"""Pydantic configuration"""
|
@@ -72,9 +70,6 @@ class CancelSingleHoldingAdjustmentRequest(BaseModel):
|
|
72
70
|
if self.sub_holding_keys[_key]:
|
73
71
|
_field_dict[_key] = self.sub_holding_keys[_key].to_dict()
|
74
72
|
_dict['subHoldingKeys'] = _field_dict
|
75
|
-
# override the default output from pydantic by calling `to_dict()` of custodian_account_id
|
76
|
-
if self.custodian_account_id:
|
77
|
-
_dict['custodianAccountId'] = self.custodian_account_id.to_dict()
|
78
73
|
# set to None if sub_holding_keys (nullable) is None
|
79
74
|
# and __fields_set__ contains the field
|
80
75
|
if self.sub_holding_keys is None and "sub_holding_keys" in self.__fields_set__:
|
@@ -104,7 +99,6 @@ class CancelSingleHoldingAdjustmentRequest(BaseModel):
|
|
104
99
|
)
|
105
100
|
if obj.get("subHoldingKeys") is not None
|
106
101
|
else None,
|
107
|
-
"currency": obj.get("currency")
|
108
|
-
"custodian_account_id": ResourceId.from_dict(obj.get("custodianAccountId")) if obj.get("custodianAccountId") is not None else None
|
102
|
+
"currency": obj.get("currency")
|
109
103
|
})
|
110
104
|
return _obj
|
@@ -21,7 +21,6 @@ import json
|
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist, constr
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
|
-
from lusid.models.resource_id import ResourceId
|
25
24
|
from lusid.models.target_tax_lot import TargetTaxLot
|
26
25
|
|
27
26
|
class HoldingAdjustment(BaseModel):
|
@@ -35,8 +34,7 @@ class HoldingAdjustment(BaseModel):
|
|
35
34
|
properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="The set of unique holding properties and associated values stored with the target holding. Each property will be from the 'Holding' domain.")
|
36
35
|
tax_lots: conlist(TargetTaxLot) = Field(..., alias="taxLots", description="The tax-lots that together make up the target holding.")
|
37
36
|
currency: Optional[StrictStr] = Field(None,alias="currency", description="The Holding currency.")
|
38
|
-
|
39
|
-
__properties = ["instrumentIdentifiers", "instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "taxLots", "currency", "custodianAccountId"]
|
37
|
+
__properties = ["instrumentIdentifiers", "instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "taxLots", "currency"]
|
40
38
|
|
41
39
|
class Config:
|
42
40
|
"""Pydantic configuration"""
|
@@ -91,9 +89,6 @@ class HoldingAdjustment(BaseModel):
|
|
91
89
|
if _item:
|
92
90
|
_items.append(_item.to_dict())
|
93
91
|
_dict['taxLots'] = _items
|
94
|
-
# override the default output from pydantic by calling `to_dict()` of custodian_account_id
|
95
|
-
if self.custodian_account_id:
|
96
|
-
_dict['custodianAccountId'] = self.custodian_account_id.to_dict()
|
97
92
|
# set to None if instrument_identifiers (nullable) is None
|
98
93
|
# and __fields_set__ contains the field
|
99
94
|
if self.instrument_identifiers is None and "instrument_identifiers" in self.__fields_set__:
|
@@ -147,7 +142,6 @@ class HoldingAdjustment(BaseModel):
|
|
147
142
|
if obj.get("properties") is not None
|
148
143
|
else None,
|
149
144
|
"tax_lots": [TargetTaxLot.from_dict(_item) for _item in obj.get("taxLots")] if obj.get("taxLots") is not None else None,
|
150
|
-
"currency": obj.get("currency")
|
151
|
-
"custodian_account_id": ResourceId.from_dict(obj.get("custodianAccountId")) if obj.get("custodianAccountId") is not None else None
|
145
|
+
"currency": obj.get("currency")
|
152
146
|
})
|
153
147
|
return _obj
|
@@ -21,7 +21,6 @@ from datetime import datetime
|
|
21
21
|
from typing import Any, Dict, List, Optional
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist, constr
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
|
-
from lusid.models.resource_id import ResourceId
|
25
24
|
from lusid.models.target_tax_lot import TargetTaxLot
|
26
25
|
|
27
26
|
class HoldingAdjustmentWithDate(BaseModel):
|
@@ -36,8 +35,7 @@ class HoldingAdjustmentWithDate(BaseModel):
|
|
36
35
|
properties: Optional[Dict[str, PerpetualProperty]] = Field(None, description="The set of unique holding properties and associated values stored with the target holding. Each property will be from the 'Holding' domain.")
|
37
36
|
tax_lots: conlist(TargetTaxLot) = Field(..., alias="taxLots", description="The tax-lots that together make up the target holding.")
|
38
37
|
currency: Optional[StrictStr] = Field(None,alias="currency", description="The Holding currency.")
|
39
|
-
|
40
|
-
__properties = ["effectiveAt", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "taxLots", "currency", "custodianAccountId"]
|
38
|
+
__properties = ["effectiveAt", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "taxLots", "currency"]
|
41
39
|
|
42
40
|
class Config:
|
43
41
|
"""Pydantic configuration"""
|
@@ -92,9 +90,6 @@ class HoldingAdjustmentWithDate(BaseModel):
|
|
92
90
|
if _item:
|
93
91
|
_items.append(_item.to_dict())
|
94
92
|
_dict['taxLots'] = _items
|
95
|
-
# override the default output from pydantic by calling `to_dict()` of custodian_account_id
|
96
|
-
if self.custodian_account_id:
|
97
|
-
_dict['custodianAccountId'] = self.custodian_account_id.to_dict()
|
98
93
|
# set to None if instrument_identifiers (nullable) is None
|
99
94
|
# and __fields_set__ contains the field
|
100
95
|
if self.instrument_identifiers is None and "instrument_identifiers" in self.__fields_set__:
|
@@ -149,7 +144,6 @@ class HoldingAdjustmentWithDate(BaseModel):
|
|
149
144
|
if obj.get("properties") is not None
|
150
145
|
else None,
|
151
146
|
"tax_lots": [TargetTaxLot.from_dict(_item) for _item in obj.get("taxLots")] if obj.get("taxLots") is not None else None,
|
152
|
-
"currency": obj.get("currency")
|
153
|
-
"custodian_account_id": ResourceId.from_dict(obj.get("custodianAccountId")) if obj.get("custodianAccountId") is not None else None
|
147
|
+
"currency": obj.get("currency")
|
154
148
|
})
|
155
149
|
return _obj
|
@@ -23,7 +23,6 @@ from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictI
|
|
23
23
|
from lusid.models.currency_and_amount import CurrencyAndAmount
|
24
24
|
from lusid.models.model_property import ModelProperty
|
25
25
|
from lusid.models.perpetual_property import PerpetualProperty
|
26
|
-
from lusid.models.resource_id import ResourceId
|
27
26
|
from lusid.models.settlement_schedule import SettlementSchedule
|
28
27
|
from lusid.models.transaction import Transaction
|
29
28
|
|
@@ -51,8 +50,7 @@ class PortfolioHolding(BaseModel):
|
|
51
50
|
variation_margin_portfolio_ccy: Optional[CurrencyAndAmount] = Field(None, alias="variationMarginPortfolioCcy")
|
52
51
|
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.")
|
53
52
|
current_face: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="currentFace", description="Current face value of the holding.")
|
54
|
-
|
55
|
-
__properties = ["instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "holdingType", "units", "settledUnits", "cost", "costPortfolioCcy", "transaction", "currency", "holdingTypeName", "holdingId", "notionalCost", "amortisedCost", "amortisedCostPortfolioCcy", "variationMargin", "variationMarginPortfolioCcy", "settlementSchedule", "currentFace", "custodianAccountId"]
|
53
|
+
__properties = ["instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "holdingType", "units", "settledUnits", "cost", "costPortfolioCcy", "transaction", "currency", "holdingTypeName", "holdingId", "notionalCost", "amortisedCost", "amortisedCostPortfolioCcy", "variationMargin", "variationMarginPortfolioCcy", "settlementSchedule", "currentFace"]
|
56
54
|
|
57
55
|
class Config:
|
58
56
|
"""Pydantic configuration"""
|
@@ -131,9 +129,6 @@ class PortfolioHolding(BaseModel):
|
|
131
129
|
if _item:
|
132
130
|
_items.append(_item.to_dict())
|
133
131
|
_dict['settlementSchedule'] = _items
|
134
|
-
# override the default output from pydantic by calling `to_dict()` of custodian_account_id
|
135
|
-
if self.custodian_account_id:
|
136
|
-
_dict['custodianAccountId'] = self.custodian_account_id.to_dict()
|
137
132
|
# set to None if instrument_scope (nullable) is None
|
138
133
|
# and __fields_set__ contains the field
|
139
134
|
if self.instrument_scope is None and "instrument_scope" in self.__fields_set__:
|
@@ -215,7 +210,6 @@ class PortfolioHolding(BaseModel):
|
|
215
210
|
"variation_margin": CurrencyAndAmount.from_dict(obj.get("variationMargin")) if obj.get("variationMargin") is not None else None,
|
216
211
|
"variation_margin_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("variationMarginPortfolioCcy")) if obj.get("variationMarginPortfolioCcy") is not None else None,
|
217
212
|
"settlement_schedule": [SettlementSchedule.from_dict(_item) for _item in obj.get("settlementSchedule")] if obj.get("settlementSchedule") is not None else None,
|
218
|
-
"current_face": obj.get("currentFace")
|
219
|
-
"custodian_account_id": ResourceId.from_dict(obj.get("custodianAccountId")) if obj.get("custodianAccountId") is not None else None
|
213
|
+
"current_face": obj.get("currentFace")
|
220
214
|
})
|
221
215
|
return _obj
|
@@ -132,8 +132,8 @@ lusid/models/address_key_list_compliance_parameter.py,sha256=A5XsOZpUtPks3dOBiey
|
|
132
132
|
lusid/models/address_key_option_definition.py,sha256=9cTsm3b4zgYx7RgZAfDvSl-sHiaZPSQ27BWBCb0EBvM,3664
|
133
133
|
lusid/models/adjust_global_commitment_event.py,sha256=SifLgPFBbEBXGp-FZCmbbprDkAU6ipwk26Tye0mpb_A,11634
|
134
134
|
lusid/models/adjust_holding.py,sha256=-rpAlGF64Rbap8RlWTSCQUxqM32MLDhNZsAEN298KlA,4634
|
135
|
-
lusid/models/adjust_holding_for_date_request.py,sha256=
|
136
|
-
lusid/models/adjust_holding_request.py,sha256=
|
135
|
+
lusid/models/adjust_holding_for_date_request.py,sha256=W8ptS6lfFXO9tad1UeC-Ylj_YxYoQTDFqz8V1CfRy4I,6214
|
136
|
+
lusid/models/adjust_holding_request.py,sha256=kDYQ5_HmGkogmjWR_mP1XXprFF34r1QAoL_sU5uJijY,5948
|
137
137
|
lusid/models/aggregate_spec.py,sha256=5qUnL0bPHrTTOAZh6jfS9Q-mzkQVB1fGiXEKC3_Rbs0,6628
|
138
138
|
lusid/models/aggregated_return.py,sha256=wOBK0g60_ci_zvYVzpjV_LueTu2DHXCTH69qJEw6BrQ,6205
|
139
139
|
lusid/models/aggregated_returns_dispersion_request.py,sha256=uAqDXWEEDfAIUWuyCXQM1ZAbw42B39ugo1PiS6ny5dM,5276
|
@@ -221,7 +221,7 @@ lusid/models/cancel_orders_and_move_remaining_request.py,sha256=BZoa304qXcrQjwR0
|
|
221
221
|
lusid/models/cancel_orders_and_move_remaining_response.py,sha256=Y3AHoQO1bWItGC8fhCviBVASdQ28-V5o5aE9QKJ0ShY,6499
|
222
222
|
lusid/models/cancel_orders_response.py,sha256=wi0x-_fVdrvYjsp4B1iL0l0vzIRmiczn0RaA8vADW-g,6280
|
223
223
|
lusid/models/cancel_placements_response.py,sha256=zLezTlCR6_2wOTmn4uTBxEPjI9Fjd6-cqF6pVWy160s,6336
|
224
|
-
lusid/models/cancel_single_holding_adjustment_request.py,sha256=
|
224
|
+
lusid/models/cancel_single_holding_adjustment_request.py,sha256=S6PwPAZFMAm4NEXfDYeE2tG8y_wQzSn5K7QUPwK5uBY,4131
|
225
225
|
lusid/models/cancelled_order_result.py,sha256=uUMxUa1ncEmvO92h-A8aj9JKtWHpMl91V9saWQLuYos,2419
|
226
226
|
lusid/models/cancelled_placement_result.py,sha256=6RyLRhsf-EQriAXFOBXXg6gaW-Cw3Rn8NRw-D_xOCD0,3359
|
227
227
|
lusid/models/cap_floor.py,sha256=8gBJiMZ-zJi0S7QD2BCHlpN2kGG4ySwJtAs25tG-jjg,11697
|
@@ -611,8 +611,8 @@ lusid/models/group_reconciliation_user_review_comment.py,sha256=myd6kqYqyZwTnrCu
|
|
611
611
|
lusid/models/group_reconciliation_user_review_match_key.py,sha256=caXKmPKSf4pczhW9dH7I9ACWuyDwJ73xfn4IbRIYLxU,3203
|
612
612
|
lusid/models/group_reconciliation_user_review_remove.py,sha256=_O3nnFCFZ_7A4p9g0BkGNQUwiDZLovuONAjHGPOkWsI,3677
|
613
613
|
lusid/models/grouped_result_of_address_key.py,sha256=tefcBnNLRbXTixWTZkJf6wsZBdM8pWTjGwuqG-sbe_8,3346
|
614
|
-
lusid/models/holding_adjustment.py,sha256=
|
615
|
-
lusid/models/holding_adjustment_with_date.py,sha256=
|
614
|
+
lusid/models/holding_adjustment.py,sha256=HN-POKeDYQCSbokE2BoreLfIUBLmRg99gTDwzX3K5CM,6680
|
615
|
+
lusid/models/holding_adjustment_with_date.py,sha256=rzbIpGc5qLFuPOxZiRDDrrw91UitN6KPQ_Kd36R0guo,6955
|
616
616
|
lusid/models/holding_context.py,sha256=D8i1P2L71FFQLG_MvohrwcgV36kmsP4geTzA4euA3uY,2361
|
617
617
|
lusid/models/holding_contributor.py,sha256=XSYpX3DzyZ2a23oV6mBPXXXOQ-Zksr_toVI60NSFFKY,3756
|
618
618
|
lusid/models/holding_ids_request.py,sha256=z7VWHWmAwdIvZUaK4OJh7teEhgWm9zP5UAw8QJXbZFU,2187
|
@@ -904,7 +904,7 @@ lusid/models/portfolio_group_id_list.py,sha256=Ut0V-XU9IxYuRRGbrpzVpr83AuwIEIZyh
|
|
904
904
|
lusid/models/portfolio_group_id_list_compliance_parameter.py,sha256=FSWPqI7dssGPfuGjqGmwwHHBBhzqtLgdpk6NBc3H5KI,8956
|
905
905
|
lusid/models/portfolio_group_properties.py,sha256=DGPpb19PXQ_xWy-3LSFccVQlIBWY_N3UTLGsrLcsi5A,4590
|
906
906
|
lusid/models/portfolio_group_search_result.py,sha256=GLbW7yd1XS6-h8as8SWlAx5SNr3uDyp5bcIkoPk31ws,6532
|
907
|
-
lusid/models/portfolio_holding.py,sha256=
|
907
|
+
lusid/models/portfolio_holding.py,sha256=eSfSFTH609Px5yroV5L2oZ12R0McXNaL4c6u26Z5fcU,12296
|
908
908
|
lusid/models/portfolio_id.py,sha256=pHaI4JYkUuTj4wRJ1UP3D1an6TspSSaVHq1_Ro0z98g,2644
|
909
909
|
lusid/models/portfolio_id_compliance_parameter.py,sha256=kon3agx_EblIE74VMQ1_I8ckPGOROrikZ3a1SUlEO_w,8875
|
910
910
|
lusid/models/portfolio_id_list.py,sha256=k-uuFaw_iC0rvM0p8NWmuYBxsDvUXa5qsdWLHngQdjU,6989
|
@@ -1380,6 +1380,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1380
1380
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1381
1381
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1382
1382
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1383
|
-
lusid_sdk-2.1.
|
1384
|
-
lusid_sdk-2.1.
|
1385
|
-
lusid_sdk-2.1.
|
1383
|
+
lusid_sdk-2.1.905.dist-info/METADATA,sha256=cTCbpMiKWnmGApPdeKZhI5HZhVAmxNIl52V2SCPJkcU,231223
|
1384
|
+
lusid_sdk-2.1.905.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1385
|
+
lusid_sdk-2.1.905.dist-info/RECORD,,
|
File without changes
|