lusid-sdk 2.1.895__py3-none-any.whl → 2.1.897__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/__init__.py CHANGED
@@ -1000,6 +1000,7 @@ from lusid.models.resource_list_of_side_definition import ResourceListOfSideDefi
1000
1000
  from lusid.models.resource_list_of_string import ResourceListOfString
1001
1001
  from lusid.models.resource_list_of_tax_rule_set import ResourceListOfTaxRuleSet
1002
1002
  from lusid.models.resource_list_of_transaction import ResourceListOfTransaction
1003
+ from lusid.models.resource_list_of_transaction_settlement_instruction import ResourceListOfTransactionSettlementInstruction
1003
1004
  from lusid.models.resource_list_of_transaction_type import ResourceListOfTransactionType
1004
1005
  from lusid.models.resource_list_of_value_type import ResourceListOfValueType
1005
1006
  from lusid.models.response_meta_data import ResponseMetaData
@@ -1043,6 +1044,7 @@ from lusid.models.set_share_class_instruments_request import SetShareClassInstru
1043
1044
  from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
1044
1045
  from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
1045
1046
  from lusid.models.settlement_cycle import SettlementCycle
1047
+ from lusid.models.settlement_instruction_request import SettlementInstructionRequest
1046
1048
  from lusid.models.settlement_schedule import SettlementSchedule
1047
1049
  from lusid.models.share_class_amount import ShareClassAmount
1048
1050
  from lusid.models.share_class_breakdown import ShareClassBreakdown
@@ -1058,6 +1060,7 @@ from lusid.models.sides_definition_request import SidesDefinitionRequest
1058
1060
  from lusid.models.simple_cash_flow_loan import SimpleCashFlowLoan
1059
1061
  from lusid.models.simple_instrument import SimpleInstrument
1060
1062
  from lusid.models.simple_rounding_convention import SimpleRoundingConvention
1063
+ from lusid.models.single_valuation_point_query_parameters import SingleValuationPointQueryParameters
1061
1064
  from lusid.models.sort_order import SortOrder
1062
1065
  from lusid.models.specific_holding_pricing_info import SpecificHoldingPricingInfo
1063
1066
  from lusid.models.spin_off_event import SpinOffEvent
@@ -1129,6 +1132,7 @@ from lusid.models.transaction_request import TransactionRequest
1129
1132
  from lusid.models.transaction_roles import TransactionRoles
1130
1133
  from lusid.models.transaction_set_configuration_data import TransactionSetConfigurationData
1131
1134
  from lusid.models.transaction_set_configuration_data_request import TransactionSetConfigurationDataRequest
1135
+ from lusid.models.transaction_settlement_instruction import TransactionSettlementInstruction
1132
1136
  from lusid.models.transaction_status import TransactionStatus
1133
1137
  from lusid.models.transaction_template import TransactionTemplate
1134
1138
  from lusid.models.transaction_template_request import TransactionTemplateRequest
@@ -2274,6 +2278,7 @@ __all__ = [
2274
2278
  "ResourceListOfString",
2275
2279
  "ResourceListOfTaxRuleSet",
2276
2280
  "ResourceListOfTransaction",
2281
+ "ResourceListOfTransactionSettlementInstruction",
2277
2282
  "ResourceListOfTransactionType",
2278
2283
  "ResourceListOfValueType",
2279
2284
  "ResponseMetaData",
@@ -2317,6 +2322,7 @@ __all__ = [
2317
2322
  "SetTransactionConfigurationAlias",
2318
2323
  "SetTransactionConfigurationSourceRequest",
2319
2324
  "SettlementCycle",
2325
+ "SettlementInstructionRequest",
2320
2326
  "SettlementSchedule",
2321
2327
  "ShareClassAmount",
2322
2328
  "ShareClassBreakdown",
@@ -2332,6 +2338,7 @@ __all__ = [
2332
2338
  "SimpleCashFlowLoan",
2333
2339
  "SimpleInstrument",
2334
2340
  "SimpleRoundingConvention",
2341
+ "SingleValuationPointQueryParameters",
2335
2342
  "SortOrder",
2336
2343
  "SpecificHoldingPricingInfo",
2337
2344
  "SpinOffEvent",
@@ -2403,6 +2410,7 @@ __all__ = [
2403
2410
  "TransactionRoles",
2404
2411
  "TransactionSetConfigurationData",
2405
2412
  "TransactionSetConfigurationDataRequest",
2413
+ "TransactionSettlementInstruction",
2406
2414
  "TransactionStatus",
2407
2415
  "TransactionTemplate",
2408
2416
  "TransactionTemplateRequest",
@@ -0,0 +1,121 @@
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, List, Optional
22
+ from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist
23
+ from lusid.models.link import Link
24
+ from lusid.models.transaction_settlement_instruction import TransactionSettlementInstruction
25
+
26
+ class ResourceListOfTransactionSettlementInstruction(BaseModel):
27
+ """
28
+ ResourceListOfTransactionSettlementInstruction
29
+ """
30
+ values: conlist(TransactionSettlementInstruction) = Field(...)
31
+ href: Optional[StrictStr] = Field(None,alias="href")
32
+ links: Optional[conlist(Link)] = None
33
+ next_page: Optional[StrictStr] = Field(None,alias="nextPage")
34
+ previous_page: Optional[StrictStr] = Field(None,alias="previousPage")
35
+ __properties = ["values", "href", "links", "nextPage", "previousPage"]
36
+
37
+ class Config:
38
+ """Pydantic configuration"""
39
+ allow_population_by_field_name = True
40
+ validate_assignment = True
41
+
42
+ def __str__(self):
43
+ """For `print` and `pprint`"""
44
+ return pprint.pformat(self.dict(by_alias=False))
45
+
46
+ def __repr__(self):
47
+ """For `print` and `pprint`"""
48
+ return self.to_str()
49
+
50
+ def to_str(self) -> str:
51
+ """Returns the string representation of the model using alias"""
52
+ return pprint.pformat(self.dict(by_alias=True))
53
+
54
+ def to_json(self) -> str:
55
+ """Returns the JSON representation of the model using alias"""
56
+ return json.dumps(self.to_dict())
57
+
58
+ @classmethod
59
+ def from_json(cls, json_str: str) -> ResourceListOfTransactionSettlementInstruction:
60
+ """Create an instance of ResourceListOfTransactionSettlementInstruction from a JSON string"""
61
+ return cls.from_dict(json.loads(json_str))
62
+
63
+ def to_dict(self):
64
+ """Returns the dictionary representation of the model using alias"""
65
+ _dict = self.dict(by_alias=True,
66
+ exclude={
67
+ },
68
+ exclude_none=True)
69
+ # override the default output from pydantic by calling `to_dict()` of each item in values (list)
70
+ _items = []
71
+ if self.values:
72
+ for _item in self.values:
73
+ if _item:
74
+ _items.append(_item.to_dict())
75
+ _dict['values'] = _items
76
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
77
+ _items = []
78
+ if self.links:
79
+ for _item in self.links:
80
+ if _item:
81
+ _items.append(_item.to_dict())
82
+ _dict['links'] = _items
83
+ # set to None if href (nullable) is None
84
+ # and __fields_set__ contains the field
85
+ if self.href is None and "href" in self.__fields_set__:
86
+ _dict['href'] = None
87
+
88
+ # set to None if links (nullable) is None
89
+ # and __fields_set__ contains the field
90
+ if self.links is None and "links" in self.__fields_set__:
91
+ _dict['links'] = None
92
+
93
+ # set to None if next_page (nullable) is None
94
+ # and __fields_set__ contains the field
95
+ if self.next_page is None and "next_page" in self.__fields_set__:
96
+ _dict['nextPage'] = None
97
+
98
+ # set to None if previous_page (nullable) is None
99
+ # and __fields_set__ contains the field
100
+ if self.previous_page is None and "previous_page" in self.__fields_set__:
101
+ _dict['previousPage'] = None
102
+
103
+ return _dict
104
+
105
+ @classmethod
106
+ def from_dict(cls, obj: dict) -> ResourceListOfTransactionSettlementInstruction:
107
+ """Create an instance of ResourceListOfTransactionSettlementInstruction from a dict"""
108
+ if obj is None:
109
+ return None
110
+
111
+ if not isinstance(obj, dict):
112
+ return ResourceListOfTransactionSettlementInstruction.parse_obj(obj)
113
+
114
+ _obj = ResourceListOfTransactionSettlementInstruction.parse_obj({
115
+ "values": [TransactionSettlementInstruction.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None,
116
+ "href": obj.get("href"),
117
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None,
118
+ "next_page": obj.get("nextPage"),
119
+ "previous_page": obj.get("previousPage")
120
+ })
121
+ return _obj
@@ -0,0 +1,101 @@
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
+ from datetime import datetime
21
+ from typing import Any, Dict, Optional, Union
22
+ from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, constr
23
+
24
+ class SettlementInstructionRequest(BaseModel):
25
+ """
26
+ SettlementInstructionRequest
27
+ """
28
+ settlement_instruction_id: StrictStr = Field(...,alias="settlementInstructionId")
29
+ transaction_id: StrictStr = Field(...,alias="transactionId")
30
+ settlement_category: StrictStr = Field(...,alias="settlementCategory")
31
+ instruction_type: Optional[StrictStr] = Field(None,alias="instructionType")
32
+ instrument_identifiers: Dict[str, StrictStr] = Field(..., alias="instrumentIdentifiers")
33
+ contractual_settlement_date: Optional[datetime] = Field(None, alias="contractualSettlementDate")
34
+ actual_settlement_date: datetime = Field(..., alias="actualSettlementDate")
35
+ units: Union[StrictFloat, StrictInt] = Field(...)
36
+ __properties = ["settlementInstructionId", "transactionId", "settlementCategory", "instructionType", "instrumentIdentifiers", "contractualSettlementDate", "actualSettlementDate", "units"]
37
+
38
+ class Config:
39
+ """Pydantic configuration"""
40
+ allow_population_by_field_name = True
41
+ validate_assignment = True
42
+
43
+ def __str__(self):
44
+ """For `print` and `pprint`"""
45
+ return pprint.pformat(self.dict(by_alias=False))
46
+
47
+ def __repr__(self):
48
+ """For `print` and `pprint`"""
49
+ return self.to_str()
50
+
51
+ def to_str(self) -> str:
52
+ """Returns the string representation of the model using alias"""
53
+ return pprint.pformat(self.dict(by_alias=True))
54
+
55
+ def to_json(self) -> str:
56
+ """Returns the JSON representation of the model using alias"""
57
+ return json.dumps(self.to_dict())
58
+
59
+ @classmethod
60
+ def from_json(cls, json_str: str) -> SettlementInstructionRequest:
61
+ """Create an instance of SettlementInstructionRequest from a JSON string"""
62
+ return cls.from_dict(json.loads(json_str))
63
+
64
+ def to_dict(self):
65
+ """Returns the dictionary representation of the model using alias"""
66
+ _dict = self.dict(by_alias=True,
67
+ exclude={
68
+ },
69
+ exclude_none=True)
70
+ # set to None if instruction_type (nullable) is None
71
+ # and __fields_set__ contains the field
72
+ if self.instruction_type is None and "instruction_type" in self.__fields_set__:
73
+ _dict['instructionType'] = None
74
+
75
+ # set to None if contractual_settlement_date (nullable) is None
76
+ # and __fields_set__ contains the field
77
+ if self.contractual_settlement_date is None and "contractual_settlement_date" in self.__fields_set__:
78
+ _dict['contractualSettlementDate'] = None
79
+
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: dict) -> SettlementInstructionRequest:
84
+ """Create an instance of SettlementInstructionRequest from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return SettlementInstructionRequest.parse_obj(obj)
90
+
91
+ _obj = SettlementInstructionRequest.parse_obj({
92
+ "settlement_instruction_id": obj.get("settlementInstructionId"),
93
+ "transaction_id": obj.get("transactionId"),
94
+ "settlement_category": obj.get("settlementCategory"),
95
+ "instruction_type": obj.get("instructionType"),
96
+ "instrument_identifiers": obj.get("instrumentIdentifiers"),
97
+ "contractual_settlement_date": obj.get("contractualSettlementDate"),
98
+ "actual_settlement_date": obj.get("actualSettlementDate"),
99
+ "units": obj.get("units")
100
+ })
101
+ return _obj
@@ -0,0 +1,81 @@
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 StrictStr, Field, BaseModel, Field
23
+ from lusid.models.date_or_diary_entry import DateOrDiaryEntry
24
+
25
+ class SingleValuationPointQueryParameters(BaseModel):
26
+ """
27
+ SingleValuationPointQueryParameters
28
+ """
29
+ date_or_diary_entry: Optional[DateOrDiaryEntry] = Field(None, alias="dateOrDiaryEntry")
30
+ __properties = ["dateOrDiaryEntry"]
31
+
32
+ class Config:
33
+ """Pydantic configuration"""
34
+ allow_population_by_field_name = True
35
+ validate_assignment = True
36
+
37
+ def __str__(self):
38
+ """For `print` and `pprint`"""
39
+ return pprint.pformat(self.dict(by_alias=False))
40
+
41
+ def __repr__(self):
42
+ """For `print` and `pprint`"""
43
+ return self.to_str()
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.dict(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> SingleValuationPointQueryParameters:
55
+ """Create an instance of SingleValuationPointQueryParameters from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self):
59
+ """Returns the dictionary representation of the model using alias"""
60
+ _dict = self.dict(by_alias=True,
61
+ exclude={
62
+ },
63
+ exclude_none=True)
64
+ # override the default output from pydantic by calling `to_dict()` of date_or_diary_entry
65
+ if self.date_or_diary_entry:
66
+ _dict['dateOrDiaryEntry'] = self.date_or_diary_entry.to_dict()
67
+ return _dict
68
+
69
+ @classmethod
70
+ def from_dict(cls, obj: dict) -> SingleValuationPointQueryParameters:
71
+ """Create an instance of SingleValuationPointQueryParameters from a dict"""
72
+ if obj is None:
73
+ return None
74
+
75
+ if not isinstance(obj, dict):
76
+ return SingleValuationPointQueryParameters.parse_obj(obj)
77
+
78
+ _obj = SingleValuationPointQueryParameters.parse_obj({
79
+ "date_or_diary_entry": DateOrDiaryEntry.from_dict(obj.get("dateOrDiaryEntry")) if obj.get("dateOrDiaryEntry") is not None else None
80
+ })
81
+ return _obj
@@ -0,0 +1,96 @@
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
+ from datetime import datetime
21
+ from typing import Any, Dict, Optional, Union
22
+ from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, constr
23
+
24
+ class TransactionSettlementInstruction(BaseModel):
25
+ """
26
+ TransactionSettlementInstruction
27
+ """
28
+ settlement_instruction_id: StrictStr = Field(...,alias="settlementInstructionId", description="The instruction identifier. Unique within the portfolio.")
29
+ instruction_type: StrictStr = Field(...,alias="instructionType", description="The type of instruction which can be Complete or CancelAutomatic. Complete means that the instruction is intended to completely settle a settlement bucket. CancelAutomatic means that it is intended to cancel Automatic settlement.")
30
+ actual_settlement_date: datetime = Field(..., alias="actualSettlementDate", description="The date that settlement takes place.")
31
+ units: Union[StrictFloat, StrictInt] = Field(..., description="The number of units for the instruction.")
32
+ transaction_id: StrictStr = Field(...,alias="transactionId", description="The ID for the transaction being instructed.")
33
+ settlement_category: StrictStr = Field(...,alias="settlementCategory", description="A category representing the set of movement types that this instruction applies to.")
34
+ lusid_instrument_id: StrictStr = Field(...,alias="lusidInstrumentId", description="The LusidInstrumentId of the instrument being settled.")
35
+ contractual_settlement_date: Optional[datetime] = Field(None, alias="contractualSettlementDate", description="The contractual settlement date. Used to match the instruction to the correct settlement bucket.")
36
+ __properties = ["settlementInstructionId", "instructionType", "actualSettlementDate", "units", "transactionId", "settlementCategory", "lusidInstrumentId", "contractualSettlementDate"]
37
+
38
+ class Config:
39
+ """Pydantic configuration"""
40
+ allow_population_by_field_name = True
41
+ validate_assignment = True
42
+
43
+ def __str__(self):
44
+ """For `print` and `pprint`"""
45
+ return pprint.pformat(self.dict(by_alias=False))
46
+
47
+ def __repr__(self):
48
+ """For `print` and `pprint`"""
49
+ return self.to_str()
50
+
51
+ def to_str(self) -> str:
52
+ """Returns the string representation of the model using alias"""
53
+ return pprint.pformat(self.dict(by_alias=True))
54
+
55
+ def to_json(self) -> str:
56
+ """Returns the JSON representation of the model using alias"""
57
+ return json.dumps(self.to_dict())
58
+
59
+ @classmethod
60
+ def from_json(cls, json_str: str) -> TransactionSettlementInstruction:
61
+ """Create an instance of TransactionSettlementInstruction from a JSON string"""
62
+ return cls.from_dict(json.loads(json_str))
63
+
64
+ def to_dict(self):
65
+ """Returns the dictionary representation of the model using alias"""
66
+ _dict = self.dict(by_alias=True,
67
+ exclude={
68
+ },
69
+ exclude_none=True)
70
+ # set to None if contractual_settlement_date (nullable) is None
71
+ # and __fields_set__ contains the field
72
+ if self.contractual_settlement_date is None and "contractual_settlement_date" in self.__fields_set__:
73
+ _dict['contractualSettlementDate'] = None
74
+
75
+ return _dict
76
+
77
+ @classmethod
78
+ def from_dict(cls, obj: dict) -> TransactionSettlementInstruction:
79
+ """Create an instance of TransactionSettlementInstruction from a dict"""
80
+ if obj is None:
81
+ return None
82
+
83
+ if not isinstance(obj, dict):
84
+ return TransactionSettlementInstruction.parse_obj(obj)
85
+
86
+ _obj = TransactionSettlementInstruction.parse_obj({
87
+ "settlement_instruction_id": obj.get("settlementInstructionId"),
88
+ "instruction_type": obj.get("instructionType"),
89
+ "actual_settlement_date": obj.get("actualSettlementDate"),
90
+ "units": obj.get("units"),
91
+ "transaction_id": obj.get("transactionId"),
92
+ "settlement_category": obj.get("settlementCategory"),
93
+ "lusid_instrument_id": obj.get("lusidInstrumentId"),
94
+ "contractual_settlement_date": obj.get("contractualSettlementDate")
95
+ })
96
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.895
3
+ Version: 2.1.897
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -272,6 +272,7 @@ Class | Method | HTTP request | Description
272
272
  *FundsApi* | [**get_fee_properties**](docs/FundsApi.md#get_fee_properties) | **GET** /api/funds/{scope}/{code}/fees/{feeCode}/properties | [EXPERIMENTAL] GetFeeProperties: Get Fee properties
273
273
  *FundsApi* | [**get_fund**](docs/FundsApi.md#get_fund) | **GET** /api/funds/{scope}/{code} | [EXPERIMENTAL] GetFund: Get a Fund.
274
274
  *FundsApi* | [**get_fund_properties**](docs/FundsApi.md#get_fund_properties) | **GET** /api/funds/{scope}/{code}/properties | [EXPERIMENTAL] GetFundProperties: Get Fund properties
275
+ *FundsApi* | [**get_holdings_for_fund**](docs/FundsApi.md#get_holdings_for_fund) | **POST** /api/funds/{scope}/{code}/$holdings | [EXPERIMENTAL] GetHoldingsForFund: Get holdings for transaction portfolios in a Fund.
275
276
  *FundsApi* | [**get_valuation_point_data**](docs/FundsApi.md#get_valuation_point_data) | **POST** /api/funds/{scope}/{code}/valuationpoints/$query | [EXPERIMENTAL] GetValuationPointData: Get Valuation Point Data for a Fund.
276
277
  *FundsApi* | [**get_valuation_point_journal_entry_lines**](docs/FundsApi.md#get_valuation_point_journal_entry_lines) | **POST** /api/funds/{scope}/{code}/valuationpoints/journalentrylines/$query | [EXPERIMENTAL] GetValuationPointJournalEntryLines: Get the Journal Entry lines for the given Fund.
277
278
  *FundsApi* | [**get_valuation_point_pnl_summary**](docs/FundsApi.md#get_valuation_point_pnl_summary) | **POST** /api/funds/{scope}/{code}/valuationpoints/pnlsummary/$query | [EXPERIMENTAL] GetValuationPointPnlSummary: Get a PnL summary for the given Valuation Point in the Fund.
@@ -635,6 +636,7 @@ Class | Method | HTTP request | Description
635
636
  *TransactionPortfoliosApi* | [**create_trade_ticket**](docs/TransactionPortfoliosApi.md#create_trade_ticket) | **POST** /api/transactionportfolios/{scope}/{code}/$tradeticket | CreateTradeTicket: Create Trade Ticket
636
637
  *TransactionPortfoliosApi* | [**delete_custodian_accounts**](docs/TransactionPortfoliosApi.md#delete_custodian_accounts) | **POST** /api/transactionportfolios/{scope}/{code}/custodianaccounts/$delete | DeleteCustodianAccounts: Soft or hard delete multiple custodian accounts
637
638
  *TransactionPortfoliosApi* | [**delete_properties_from_transaction**](docs/TransactionPortfoliosApi.md#delete_properties_from_transaction) | **DELETE** /api/transactionportfolios/{scope}/{code}/transactions/{transactionId}/properties | DeletePropertiesFromTransaction: Delete properties from transaction
639
+ *TransactionPortfoliosApi* | [**delete_settlement_instructions**](docs/TransactionPortfoliosApi.md#delete_settlement_instructions) | **DELETE** /api/transactionportfolios/{scope}/{code}/settlementinstructions | [EARLY ACCESS] DeleteSettlementInstructions: Delete Settlement Instructions.
638
640
  *TransactionPortfoliosApi* | [**get_a2_b_data**](docs/TransactionPortfoliosApi.md#get_a2_b_data) | **GET** /api/transactionportfolios/{scope}/{code}/a2b | GetA2BData: Get A2B data
639
641
  *TransactionPortfoliosApi* | [**get_a2_b_movements**](docs/TransactionPortfoliosApi.md#get_a2_b_movements) | **GET** /api/transactionportfolios/{scope}/{code}/a2bmovements | GetA2BMovements: Get an A2B report at the movement level for the given portfolio.
640
642
  *TransactionPortfoliosApi* | [**get_bucketed_cash_flows**](docs/TransactionPortfoliosApi.md#get_bucketed_cash_flows) | **POST** /api/transactionportfolios/{scope}/{code}/bucketedCashFlows | GetBucketedCashFlows: Get bucketed cash flows from a list of portfolios
@@ -653,6 +655,7 @@ Class | Method | HTTP request | Description
653
655
  *TransactionPortfoliosApi* | [**get_upsertable_portfolio_cash_flows**](docs/TransactionPortfoliosApi.md#get_upsertable_portfolio_cash_flows) | **GET** /api/transactionportfolios/{scope}/{code}/upsertablecashflows | GetUpsertablePortfolioCashFlows: Get upsertable portfolio cash flows.
654
656
  *TransactionPortfoliosApi* | [**list_custodian_accounts**](docs/TransactionPortfoliosApi.md#list_custodian_accounts) | **GET** /api/transactionportfolios/{scope}/{code}/custodianaccounts | ListCustodianAccounts: List Custodian Accounts
655
657
  *TransactionPortfoliosApi* | [**list_holdings_adjustments**](docs/TransactionPortfoliosApi.md#list_holdings_adjustments) | **GET** /api/transactionportfolios/{scope}/{code}/holdingsadjustments | ListHoldingsAdjustments: List holdings adjustments
658
+ *TransactionPortfoliosApi* | [**list_settlement_instructions**](docs/TransactionPortfoliosApi.md#list_settlement_instructions) | **GET** /api/transactionportfolios/{scope}/{code}/settlementinstructions | [EARLY ACCESS] ListSettlementInstructions: List Settlement Instructions.
656
659
  *TransactionPortfoliosApi* | [**patch_portfolio_details**](docs/TransactionPortfoliosApi.md#patch_portfolio_details) | **PATCH** /api/transactionportfolios/{scope}/{code}/details | PatchPortfolioDetails: Patch portfolio details
657
660
  *TransactionPortfoliosApi* | [**preview_transaction**](docs/TransactionPortfoliosApi.md#preview_transaction) | **POST** /api/transactionportfolios/{scope}/{code}/previewTransaction | PreviewTransaction: Preview a transaction
658
661
  *TransactionPortfoliosApi* | [**resolve_instrument**](docs/TransactionPortfoliosApi.md#resolve_instrument) | **POST** /api/transactionportfolios/{scope}/{code}/$resolve | ResolveInstrument: Resolve instrument
@@ -660,6 +663,7 @@ Class | Method | HTTP request | Description
660
663
  *TransactionPortfoliosApi* | [**upsert_custodian_accounts**](docs/TransactionPortfoliosApi.md#upsert_custodian_accounts) | **POST** /api/transactionportfolios/{scope}/{code}/custodianaccounts | UpsertCustodianAccounts: Upsert Custodian Accounts
661
664
  *TransactionPortfoliosApi* | [**upsert_custodian_accounts_properties**](docs/TransactionPortfoliosApi.md#upsert_custodian_accounts_properties) | **POST** /api/transactionportfolios/{scope}/{code}/custodianaccounts/{custodianAccountScope}/{custodianAccountCode}/properties/$upsert | UpsertCustodianAccountsProperties: Upsert custodian accounts properties
662
665
  *TransactionPortfoliosApi* | [**upsert_portfolio_details**](docs/TransactionPortfoliosApi.md#upsert_portfolio_details) | **POST** /api/transactionportfolios/{scope}/{code}/details | UpsertPortfolioDetails: Upsert portfolio details
666
+ *TransactionPortfoliosApi* | [**upsert_settlement_instructions**](docs/TransactionPortfoliosApi.md#upsert_settlement_instructions) | **POST** /api/transactionportfolios/{scope}/{code}/settlementinstructions | [EARLY ACCESS] UpsertSettlementInstructions: Upsert Settlement Instructions.
663
667
  *TransactionPortfoliosApi* | [**upsert_transaction_properties**](docs/TransactionPortfoliosApi.md#upsert_transaction_properties) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/{transactionId}/properties | UpsertTransactionProperties: Upsert transaction properties
664
668
  *TransactionPortfoliosApi* | [**upsert_transactions**](docs/TransactionPortfoliosApi.md#upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions | UpsertTransactions: Upsert transactions
665
669
  *TransferAgencyApi* | [**calculate_order_dates**](docs/TransferAgencyApi.md#calculate_order_dates) | **POST** /api/transferagency/orderdates | [EXPERIMENTAL] CalculateOrderDates: Calculate the key dates associated with transfer agency orders
@@ -1667,6 +1671,7 @@ Class | Method | HTTP request | Description
1667
1671
  - [ResourceListOfString](docs/ResourceListOfString.md)
1668
1672
  - [ResourceListOfTaxRuleSet](docs/ResourceListOfTaxRuleSet.md)
1669
1673
  - [ResourceListOfTransaction](docs/ResourceListOfTransaction.md)
1674
+ - [ResourceListOfTransactionSettlementInstruction](docs/ResourceListOfTransactionSettlementInstruction.md)
1670
1675
  - [ResourceListOfTransactionType](docs/ResourceListOfTransactionType.md)
1671
1676
  - [ResourceListOfValueType](docs/ResourceListOfValueType.md)
1672
1677
  - [ResponseMetaData](docs/ResponseMetaData.md)
@@ -1710,6 +1715,7 @@ Class | Method | HTTP request | Description
1710
1715
  - [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
1711
1716
  - [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
1712
1717
  - [SettlementCycle](docs/SettlementCycle.md)
1718
+ - [SettlementInstructionRequest](docs/SettlementInstructionRequest.md)
1713
1719
  - [SettlementSchedule](docs/SettlementSchedule.md)
1714
1720
  - [ShareClassAmount](docs/ShareClassAmount.md)
1715
1721
  - [ShareClassBreakdown](docs/ShareClassBreakdown.md)
@@ -1725,6 +1731,7 @@ Class | Method | HTTP request | Description
1725
1731
  - [SimpleCashFlowLoan](docs/SimpleCashFlowLoan.md)
1726
1732
  - [SimpleInstrument](docs/SimpleInstrument.md)
1727
1733
  - [SimpleRoundingConvention](docs/SimpleRoundingConvention.md)
1734
+ - [SingleValuationPointQueryParameters](docs/SingleValuationPointQueryParameters.md)
1728
1735
  - [SortOrder](docs/SortOrder.md)
1729
1736
  - [SpecificHoldingPricingInfo](docs/SpecificHoldingPricingInfo.md)
1730
1737
  - [SpinOffEvent](docs/SpinOffEvent.md)
@@ -1796,6 +1803,7 @@ Class | Method | HTTP request | Description
1796
1803
  - [TransactionRoles](docs/TransactionRoles.md)
1797
1804
  - [TransactionSetConfigurationData](docs/TransactionSetConfigurationData.md)
1798
1805
  - [TransactionSetConfigurationDataRequest](docs/TransactionSetConfigurationDataRequest.md)
1806
+ - [TransactionSettlementInstruction](docs/TransactionSettlementInstruction.md)
1799
1807
  - [TransactionStatus](docs/TransactionStatus.md)
1800
1808
  - [TransactionTemplate](docs/TransactionTemplate.md)
1801
1809
  - [TransactionTemplateRequest](docs/TransactionTemplateRequest.md)
@@ -1,4 +1,4 @@
1
- lusid/__init__.py,sha256=eIu-nUoLkRPJDcPXU9JNb5Y2gdDFIAmHzFDZPxpyTa0,144063
1
+ lusid/__init__.py,sha256=L3O5E57yE0qm_b-gbMiTu41kA7m4flBvQhCozwJf-l8,144639
2
2
  lusid/api/__init__.py,sha256=yCGwgeQBZ1RZovOUo7Jq24Txz4o6naRgnWAzQVGdHAk,6784
3
3
  lusid/api/abor_api.py,sha256=N7Wsh0395mXOvpJI8z0Nrx5OY4nCP5FN9RkbtdHaZbM,165987
4
4
  lusid/api/abor_configuration_api.py,sha256=xQ9HcXm02eDFhCdWUHjqFRWl1oQMxm2LNObJ9kcLauU,84216
@@ -29,7 +29,7 @@ lusid/api/entities_api.py,sha256=uImduqQPNkudngZn85Zwk35oAG-JEFvGEpADfJeMf_E,836
29
29
  lusid/api/executions_api.py,sha256=ZL8xmOxGpjIJtdU7lCdwcapILElWx7FGBDr8cjskCZs,44076
30
30
  lusid/api/fee_types_api.py,sha256=qRVfNS91XHBlD_CrewsPMsetIHB6M0mn3RWbD4LTuro,54620
31
31
  lusid/api/fund_configuration_api.py,sha256=18oHsK1ncAobjd8_uDHAI7UbWz4Vm5bPVubFmBdoERo,72665
32
- lusid/api/funds_api.py,sha256=yspySwnxyKKRgUxrEVjdsYekhF6DIHLNJPFubAkDBJk,349459
32
+ lusid/api/funds_api.py,sha256=kA17OvvZw199SqxOJK1HwgesvngfZqrf-oEYFnBMzMw,368797
33
33
  lusid/api/group_reconciliations_api.py,sha256=U8qg3jGd39E1epaiOcjOV_uO8BUivbvKAdujvQ5fFNE,163197
34
34
  lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL9Dq4YH60MI,64305
35
35
  lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
@@ -74,13 +74,13 @@ lusid/api/tax_rule_sets_api.py,sha256=ia8zjTdwlgLGC8KDWFBT21agOrfWgn1zC_ik75mNDJ
74
74
  lusid/api/timelines_api.py,sha256=uxSMdLi9dI6y8LSaezsLXEVedy9I7A-k22RAKY0Rw4k,109878
75
75
  lusid/api/transaction_configuration_api.py,sha256=OHs853-U1RWs2oApEO3raiMxixxiMQMcXu566qsm5v4,103968
76
76
  lusid/api/transaction_fees_api.py,sha256=r8Gl44-WYZebyJ_Uw2stLsf3-hPi1bK6Ij64Kx0L6A8,62698
77
- lusid/api/transaction_portfolios_api.py,sha256=oQ4eRetemmFeUHqSzaPxpyQiRDfYIlUmSSgRMvmlAis,612165
77
+ lusid/api/transaction_portfolios_api.py,sha256=c7Jcrp81ilKqDlwNDcsryOpSJIs2lGD3rXnVALmSnhM,647546
78
78
  lusid/api/transfer_agency_api.py,sha256=m-o3srFi7ZcUcWlO_lpOJiYZJvDSt2JLy7QPcXQoPh4,9545
79
79
  lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,20227
80
80
  lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
81
81
  lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
82
82
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
83
- lusid/configuration.py,sha256=bWGxYUEIk5UqWIOOUBxuaPPcoMk7UPIdfL3NlvY9lhg,17972
83
+ lusid/configuration.py,sha256=zIovR9Yndvq2ear8X64JtIQFn8InyZqsj6is18NEEPM,17972
84
84
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
85
85
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
86
86
  lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
@@ -95,7 +95,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
95
95
  lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
96
96
  lusid/extensions/socket_keep_alive.py,sha256=eX5ICvGfVzUCGIm80Q2RknfFZrBQAdnrcpY61M29V_k,1997
97
97
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
98
- lusid/models/__init__.py,sha256=DuZlOI1UQlHWKHuzcGUS6vsMsCsk0WrpNtEVmAjgPFA,136247
98
+ lusid/models/__init__.py,sha256=_kTWr8LmPcQyNFrNOoTebpfV1p3PBq3Derzh0glWd1U,136823
99
99
  lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
100
100
  lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
101
101
  lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
@@ -1082,6 +1082,7 @@ lusid/models/resource_list_of_side_definition.py,sha256=TNnI6n2JzDapvDdVKxExDOA0
1082
1082
  lusid/models/resource_list_of_string.py,sha256=a21qwmXtmefzjX2Ij_WFgyX_9v23zrN_pYGkMmjPCfw,3843
1083
1083
  lusid/models/resource_list_of_tax_rule_set.py,sha256=ZPvs6aaX64LQdJdTi89PGJYlCj_SKOVW4qpCLo-DBqE,4312
1084
1084
  lusid/models/resource_list_of_transaction.py,sha256=HjzedHR_cDUdVi9HT1-eKDV2gYoyEa1OYbKpF9KEbG4,4322
1085
+ lusid/models/resource_list_of_transaction_settlement_instruction.py,sha256=13jx7sRU5yFYcEmS0ksZLixfufVBOHL7o3ncqcaRa_o,4576
1085
1086
  lusid/models/resource_list_of_transaction_type.py,sha256=6iHogz70ogIVG-C-kL9LsJAYPMwUhE0Un5C8cbxcpVM,4371
1086
1087
  lusid/models/resource_list_of_value_type.py,sha256=DZV6PYjnzwmMD69g7_7Mk3vgSVGytdypykgOn1XZFSE,3922
1087
1088
  lusid/models/response_meta_data.py,sha256=iRCELepffC2GVCyV7wt3A8HZbEAypWk2VEeoWBVsETM,3708
@@ -1125,6 +1126,7 @@ lusid/models/set_share_class_instruments_request.py,sha256=wIxDkYoiimlHGioINv-bA
1125
1126
  lusid/models/set_transaction_configuration_alias.py,sha256=HXqUSsfc9BpUxDqQsWuCulekcHFFKlAZPT_sVxK5Mqc,2791
1126
1127
  lusid/models/set_transaction_configuration_source_request.py,sha256=onioX-Oi4zG91Cs0weO0oqRpdiD-BQgHLzYRlEmmr0I,4458
1127
1128
  lusid/models/settlement_cycle.py,sha256=0L4GedRTJ9kTTmIzwGo9EeMhQwbuPG8TfgMHpCVBAtk,2746
1129
+ lusid/models/settlement_instruction_request.py,sha256=dmBQI2tXDp5T6HtyYVlP_5SJMjvHv9JGWvGJOnd7v7E,4013
1128
1130
  lusid/models/settlement_schedule.py,sha256=dORUF8oOBIFnlnH8BTFpXOXUSDIrdDFurs91Nz_v8LI,2818
1129
1131
  lusid/models/share_class_amount.py,sha256=ZQTWOV3Wvq4MVOmeNN6orybodEcvhx6oqgn51ki6vOw,2561
1130
1132
  lusid/models/share_class_breakdown.py,sha256=eyxIfrun-A-cKeUxJa_s_ofGWCC7d-62L_MWz5QajXQ,7914
@@ -1140,6 +1142,7 @@ lusid/models/sides_definition_request.py,sha256=tM5Eo8aIEQoMy0qzv1WQZlst_yV3RwIe
1140
1142
  lusid/models/simple_cash_flow_loan.py,sha256=VXriShvW0dCRRialBwbeGTQ5k9ae4ZswFRmdXjLlWMM,10387
1141
1143
  lusid/models/simple_instrument.py,sha256=B5sWkhZKZ7BZfWfxTAOuTlRvh96c-W4byeUr9mQj9wc,14422
1142
1144
  lusid/models/simple_rounding_convention.py,sha256=txqtrVhoOfgLx5zQKvPJPl1lUNOQ95QYk4FPhkdDDbo,2996
1145
+ lusid/models/single_valuation_point_query_parameters.py,sha256=JTiOMcHkp857wwxZyyaC-xXDgdd1cehS3TwEu_mbQbI,2656
1143
1146
  lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
1144
1147
  lusid/models/specific_holding_pricing_info.py,sha256=dSwywkW-7xLyDND_JDzHrDDEbVeDNQC8AuDM0iUWaeM,2957
1145
1148
  lusid/models/spin_off_event.py,sha256=4ZX-Zd7aN-1mEYcpOxs_PGp-lvyGLQtKg50ktmTrNCo,14816
@@ -1211,6 +1214,7 @@ lusid/models/transaction_request.py,sha256=s6OVPLAxPDbUMU4gLN_XNX9ngdlKdPBgGeRDB
1211
1214
  lusid/models/transaction_roles.py,sha256=1r-BzcchffLl6p4lSUhRAUmsVdrl7Bvce2cCiwxJanE,839
1212
1215
  lusid/models/transaction_set_configuration_data.py,sha256=hgtBUJzYyJlOj11GTpTkY05Sqdcd4SdNY2gFhP3Zzis,4643
1213
1216
  lusid/models/transaction_set_configuration_data_request.py,sha256=Nq8DEDlONeOEJ_XHqKAcKaOlRibqrjfh06xo-RNQdbs,4179
1217
+ lusid/models/transaction_settlement_instruction.py,sha256=MMwitZSiHs68H_BngJoiM46-UzEc-BQPqC8g7yYOGj8,4520
1214
1218
  lusid/models/transaction_status.py,sha256=8b1pF1I7A3PzeZmStCXvnhqcDsPSlo8fQnnNQFYGZlA,812
1215
1219
  lusid/models/transaction_template.py,sha256=mFZdjodcv7BQZEb4V0chCUiMc7mz_VgYF2CPppev3Fo,4351
1216
1220
  lusid/models/transaction_template_request.py,sha256=5zZKzBg5bl_1XWq4T9rO3HbzRfoQOYz3XDFH0OdXBeY,3088
@@ -1369,6 +1373,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
1369
1373
  lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
1370
1374
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1371
1375
  lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
1372
- lusid_sdk-2.1.895.dist-info/METADATA,sha256=dgnacDKnUhBOEjY8VpqYVfwJDNw0BQNHXZE36JB_6No,228779
1373
- lusid_sdk-2.1.895.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1374
- lusid_sdk-2.1.895.dist-info/RECORD,,
1376
+ lusid_sdk-2.1.897.dist-info/METADATA,sha256=IlUfcjhLY4d9Pj0m56GoR8zvHzLMPrdwTgwkn5os7rI,230192
1377
+ lusid_sdk-2.1.897.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1378
+ lusid_sdk-2.1.897.dist-info/RECORD,,