lusid-sdk 2.1.130__py3-none-any.whl → 2.1.133__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.
Potentially problematic release.
This version of lusid-sdk might be problematic. Click here for more details.
- lusid/__init__.py +2 -0
- lusid/api/portfolio_groups_api.py +16 -8
- lusid/api/transaction_portfolios_api.py +32 -16
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/portfolio_holding.py +19 -4
- lusid/models/settlement_schedule.py +78 -0
- {lusid_sdk-2.1.130.dist-info → lusid_sdk-2.1.133.dist-info}/METADATA +4 -3
- {lusid_sdk-2.1.130.dist-info → lusid_sdk-2.1.133.dist-info}/RECORD +10 -9
- {lusid_sdk-2.1.130.dist-info → lusid_sdk-2.1.133.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
|
@@ -880,6 +880,7 @@ from lusid.models.set_person_properties_request import SetPersonPropertiesReques
|
|
|
880
880
|
from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
|
|
881
881
|
from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
|
|
882
882
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
|
883
|
+
from lusid.models.settlement_schedule import SettlementSchedule
|
|
883
884
|
from lusid.models.side_configuration_data import SideConfigurationData
|
|
884
885
|
from lusid.models.side_configuration_data_request import SideConfigurationDataRequest
|
|
885
886
|
from lusid.models.side_definition import SideDefinition
|
|
@@ -1932,6 +1933,7 @@ __all__ = [
|
|
|
1932
1933
|
"SetShareClassInstrumentsRequest",
|
|
1933
1934
|
"SetTransactionConfigurationAlias",
|
|
1934
1935
|
"SetTransactionConfigurationSourceRequest",
|
|
1936
|
+
"SettlementSchedule",
|
|
1935
1937
|
"SideConfigurationData",
|
|
1936
1938
|
"SideConfigurationDataRequest",
|
|
1937
1939
|
"SideDefinition",
|
|
@@ -2108,22 +2108,22 @@ class PortfolioGroupsApi:
|
|
|
2108
2108
|
_request_auth=_params.get('_request_auth'))
|
|
2109
2109
|
|
|
2110
2110
|
@overload
|
|
2111
|
-
async def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
2111
|
+
async def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
2112
2112
|
...
|
|
2113
2113
|
|
|
2114
2114
|
@overload
|
|
2115
|
-
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
2115
|
+
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
2116
2116
|
...
|
|
2117
2117
|
|
|
2118
2118
|
@validate_arguments
|
|
2119
|
-
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfPortfolioHolding, Awaitable[VersionedResourceListOfPortfolioHolding]]: # noqa: E501
|
|
2119
|
+
def get_holdings_for_portfolio_group(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfPortfolioHolding, Awaitable[VersionedResourceListOfPortfolioHolding]]: # noqa: E501
|
|
2120
2120
|
"""GetHoldingsForPortfolioGroup: Get holdings for transaction portfolios in portfolio group # noqa: E501
|
|
2121
2121
|
|
|
2122
2122
|
Get the holdings of transaction portfolios in specified portfolio group. # noqa: E501
|
|
2123
2123
|
This method makes a synchronous HTTP request by default. To make an
|
|
2124
2124
|
asynchronous HTTP request, please pass async_req=True
|
|
2125
2125
|
|
|
2126
|
-
>>> thread = api.get_holdings_for_portfolio_group(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, async_req=True)
|
|
2126
|
+
>>> thread = api.get_holdings_for_portfolio_group(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, async_req=True)
|
|
2127
2127
|
>>> result = thread.get()
|
|
2128
2128
|
|
|
2129
2129
|
:param scope: The scope of the portfolio group. (required)
|
|
@@ -2140,6 +2140,8 @@ class PortfolioGroupsApi:
|
|
|
2140
2140
|
:type property_keys: List[str]
|
|
2141
2141
|
:param by_taxlots: Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.
|
|
2142
2142
|
:type by_taxlots: bool
|
|
2143
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
|
2144
|
+
:type include_settlement_events_after_days: int
|
|
2143
2145
|
:param async_req: Whether to execute the request asynchronously.
|
|
2144
2146
|
:type async_req: bool, optional
|
|
2145
2147
|
:param _request_timeout: timeout setting for this request.
|
|
@@ -2157,17 +2159,17 @@ class PortfolioGroupsApi:
|
|
|
2157
2159
|
raise ValueError(message)
|
|
2158
2160
|
if async_req is not None:
|
|
2159
2161
|
kwargs['async_req'] = async_req
|
|
2160
|
-
return self.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, **kwargs) # noqa: E501
|
|
2162
|
+
return self.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, **kwargs) # noqa: E501
|
|
2161
2163
|
|
|
2162
2164
|
@validate_arguments
|
|
2163
|
-
def get_holdings_for_portfolio_group_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
2165
|
+
def get_holdings_for_portfolio_group_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the portfolio group.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the portfolio group. Together with the scope this uniquely identifies the portfolio group.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of transaction portfolios in the portfolio group. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. Read more about filtering results from LUSID here https://support.lusid.com/filtering-results-from-lusid.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
2164
2166
|
"""GetHoldingsForPortfolioGroup: Get holdings for transaction portfolios in portfolio group # noqa: E501
|
|
2165
2167
|
|
|
2166
2168
|
Get the holdings of transaction portfolios in specified portfolio group. # noqa: E501
|
|
2167
2169
|
This method makes a synchronous HTTP request by default. To make an
|
|
2168
2170
|
asynchronous HTTP request, please pass async_req=True
|
|
2169
2171
|
|
|
2170
|
-
>>> thread = api.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, async_req=True)
|
|
2172
|
+
>>> thread = api.get_holdings_for_portfolio_group_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, async_req=True)
|
|
2171
2173
|
>>> result = thread.get()
|
|
2172
2174
|
|
|
2173
2175
|
:param scope: The scope of the portfolio group. (required)
|
|
@@ -2184,6 +2186,8 @@ class PortfolioGroupsApi:
|
|
|
2184
2186
|
:type property_keys: List[str]
|
|
2185
2187
|
:param by_taxlots: Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.
|
|
2186
2188
|
:type by_taxlots: bool
|
|
2189
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
|
2190
|
+
:type include_settlement_events_after_days: int
|
|
2187
2191
|
:param async_req: Whether to execute the request asynchronously.
|
|
2188
2192
|
:type async_req: bool, optional
|
|
2189
2193
|
:param _preload_content: if False, the ApiResponse.data will
|
|
@@ -2218,7 +2222,8 @@ class PortfolioGroupsApi:
|
|
|
2218
2222
|
'as_at',
|
|
2219
2223
|
'filter',
|
|
2220
2224
|
'property_keys',
|
|
2221
|
-
'by_taxlots'
|
|
2225
|
+
'by_taxlots',
|
|
2226
|
+
'include_settlement_events_after_days'
|
|
2222
2227
|
]
|
|
2223
2228
|
_all_params.extend(
|
|
2224
2229
|
[
|
|
@@ -2274,6 +2279,9 @@ class PortfolioGroupsApi:
|
|
|
2274
2279
|
if _params.get('by_taxlots') is not None: # noqa: E501
|
|
2275
2280
|
_query_params.append(('byTaxlots', _params['by_taxlots']))
|
|
2276
2281
|
|
|
2282
|
+
if _params.get('include_settlement_events_after_days') is not None: # noqa: E501
|
|
2283
|
+
_query_params.append(('includeSettlementEventsAfterDays', _params['include_settlement_events_after_days']))
|
|
2284
|
+
|
|
2277
2285
|
# process the header parameters
|
|
2278
2286
|
_header_params = dict(_params.get('_headers', {}))
|
|
2279
2287
|
# process the form parameters
|
|
@@ -3314,22 +3314,22 @@ class TransactionPortfoliosApi:
|
|
|
3314
3314
|
_request_auth=_params.get('_request_auth'))
|
|
3315
3315
|
|
|
3316
3316
|
@overload
|
|
3317
|
-
async def get_holdings(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
3317
|
+
async def get_holdings(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
3318
3318
|
...
|
|
3319
3319
|
|
|
3320
3320
|
@overload
|
|
3321
|
-
def get_holdings(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
3321
|
+
def get_holdings(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListOfPortfolioHolding: # noqa: E501
|
|
3322
3322
|
...
|
|
3323
3323
|
|
|
3324
3324
|
@validate_arguments
|
|
3325
|
-
def get_holdings(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfPortfolioHolding, Awaitable[VersionedResourceListOfPortfolioHolding]]: # noqa: E501
|
|
3325
|
+
def get_holdings(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListOfPortfolioHolding, Awaitable[VersionedResourceListOfPortfolioHolding]]: # noqa: E501
|
|
3326
3326
|
"""GetHoldings: Get holdings # noqa: E501
|
|
3327
3327
|
|
|
3328
3328
|
Calculate holdings for a transaction portfolio. # noqa: E501
|
|
3329
3329
|
This method makes a synchronous HTTP request by default. To make an
|
|
3330
3330
|
asynchronous HTTP request, please pass async_req=True
|
|
3331
3331
|
|
|
3332
|
-
>>> thread = api.get_holdings(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, async_req=True)
|
|
3332
|
+
>>> thread = api.get_holdings(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, async_req=True)
|
|
3333
3333
|
>>> result = thread.get()
|
|
3334
3334
|
|
|
3335
3335
|
:param scope: The scope of the transaction portfolio. (required)
|
|
@@ -3346,6 +3346,8 @@ class TransactionPortfoliosApi:
|
|
|
3346
3346
|
:type property_keys: List[str]
|
|
3347
3347
|
:param by_taxlots: Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.
|
|
3348
3348
|
:type by_taxlots: bool
|
|
3349
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
|
3350
|
+
:type include_settlement_events_after_days: int
|
|
3349
3351
|
:param async_req: Whether to execute the request asynchronously.
|
|
3350
3352
|
:type async_req: bool, optional
|
|
3351
3353
|
:param _request_timeout: timeout setting for this request.
|
|
@@ -3363,17 +3365,17 @@ class TransactionPortfoliosApi:
|
|
|
3363
3365
|
raise ValueError(message)
|
|
3364
3366
|
if async_req is not None:
|
|
3365
3367
|
kwargs['async_req'] = async_req
|
|
3366
|
-
return self.get_holdings_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, **kwargs) # noqa: E501
|
|
3368
|
+
return self.get_holdings_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, **kwargs) # noqa: E501
|
|
3367
3369
|
|
|
3368
3370
|
@validate_arguments
|
|
3369
|
-
def get_holdings_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
3371
|
+
def get_holdings_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\". For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\", \"Custodian Account\" or \"Portfolio\" domain to decorate onto holdings. These must have the format {domain}/{scope}/{code}, for example \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
3370
3372
|
"""GetHoldings: Get holdings # noqa: E501
|
|
3371
3373
|
|
|
3372
3374
|
Calculate holdings for a transaction portfolio. # noqa: E501
|
|
3373
3375
|
This method makes a synchronous HTTP request by default. To make an
|
|
3374
3376
|
asynchronous HTTP request, please pass async_req=True
|
|
3375
3377
|
|
|
3376
|
-
>>> thread = api.get_holdings_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, async_req=True)
|
|
3378
|
+
>>> thread = api.get_holdings_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, include_settlement_events_after_days, async_req=True)
|
|
3377
3379
|
>>> result = thread.get()
|
|
3378
3380
|
|
|
3379
3381
|
:param scope: The scope of the transaction portfolio. (required)
|
|
@@ -3390,6 +3392,8 @@ class TransactionPortfoliosApi:
|
|
|
3390
3392
|
:type property_keys: List[str]
|
|
3391
3393
|
:param by_taxlots: Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.
|
|
3392
3394
|
:type by_taxlots: bool
|
|
3395
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
|
3396
|
+
:type include_settlement_events_after_days: int
|
|
3393
3397
|
:param async_req: Whether to execute the request asynchronously.
|
|
3394
3398
|
:type async_req: bool, optional
|
|
3395
3399
|
:param _preload_content: if False, the ApiResponse.data will
|
|
@@ -3424,7 +3428,8 @@ class TransactionPortfoliosApi:
|
|
|
3424
3428
|
'as_at',
|
|
3425
3429
|
'filter',
|
|
3426
3430
|
'property_keys',
|
|
3427
|
-
'by_taxlots'
|
|
3431
|
+
'by_taxlots',
|
|
3432
|
+
'include_settlement_events_after_days'
|
|
3428
3433
|
]
|
|
3429
3434
|
_all_params.extend(
|
|
3430
3435
|
[
|
|
@@ -3480,6 +3485,9 @@ class TransactionPortfoliosApi:
|
|
|
3480
3485
|
if _params.get('by_taxlots') is not None: # noqa: E501
|
|
3481
3486
|
_query_params.append(('byTaxlots', _params['by_taxlots']))
|
|
3482
3487
|
|
|
3488
|
+
if _params.get('include_settlement_events_after_days') is not None: # noqa: E501
|
|
3489
|
+
_query_params.append(('includeSettlementEventsAfterDays', _params['include_settlement_events_after_days']))
|
|
3490
|
+
|
|
3483
3491
|
# process the header parameters
|
|
3484
3492
|
_header_params = dict(_params.get('_headers', {}))
|
|
3485
3493
|
# process the form parameters
|
|
@@ -3704,22 +3712,22 @@ class TransactionPortfoliosApi:
|
|
|
3704
3712
|
_request_auth=_params.get('_request_auth'))
|
|
3705
3713
|
|
|
3706
3714
|
@overload
|
|
3707
|
-
async def get_holdings_with_orders(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, **kwargs) -> VersionedResourceListWithWarningsOfPortfolioHolding: # noqa: E501
|
|
3715
|
+
async def get_holdings_with_orders(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> VersionedResourceListWithWarningsOfPortfolioHolding: # noqa: E501
|
|
3708
3716
|
...
|
|
3709
3717
|
|
|
3710
3718
|
@overload
|
|
3711
|
-
def get_holdings_with_orders(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListWithWarningsOfPortfolioHolding: # noqa: E501
|
|
3719
|
+
def get_holdings_with_orders(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=True, **kwargs) -> VersionedResourceListWithWarningsOfPortfolioHolding: # noqa: E501
|
|
3712
3720
|
...
|
|
3713
3721
|
|
|
3714
3722
|
@validate_arguments
|
|
3715
|
-
def get_holdings_with_orders(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListWithWarningsOfPortfolioHolding, Awaitable[VersionedResourceListWithWarningsOfPortfolioHolding]]: # noqa: E501
|
|
3723
|
+
def get_holdings_with_orders(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[VersionedResourceListWithWarningsOfPortfolioHolding, Awaitable[VersionedResourceListWithWarningsOfPortfolioHolding]]: # noqa: E501
|
|
3716
3724
|
"""[EXPERIMENTAL] GetHoldingsWithOrders: Get holdings with orders # noqa: E501
|
|
3717
3725
|
|
|
3718
3726
|
Get the holdings of a transaction portfolio. Create virtual holdings for any outstanding orders, and account for order state/fulfillment; that is, treat outstanding orders (and related records) as if they had been realised at moment of query. # noqa: E501
|
|
3719
3727
|
This method makes a synchronous HTTP request by default. To make an
|
|
3720
3728
|
asynchronous HTTP request, please pass async_req=True
|
|
3721
3729
|
|
|
3722
|
-
>>> thread = api.get_holdings_with_orders(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, recipe_id_scope, recipe_id_code, async_req=True)
|
|
3730
|
+
>>> thread = api.get_holdings_with_orders(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, recipe_id_scope, recipe_id_code, include_settlement_events_after_days, async_req=True)
|
|
3723
3731
|
>>> result = thread.get()
|
|
3724
3732
|
|
|
3725
3733
|
:param scope: The scope of the transaction portfolio. (required)
|
|
@@ -3740,6 +3748,8 @@ class TransactionPortfoliosApi:
|
|
|
3740
3748
|
:type recipe_id_scope: str
|
|
3741
3749
|
:param recipe_id_code: The code of the given recipeId
|
|
3742
3750
|
:type recipe_id_code: str
|
|
3751
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
|
3752
|
+
:type include_settlement_events_after_days: int
|
|
3743
3753
|
:param async_req: Whether to execute the request asynchronously.
|
|
3744
3754
|
:type async_req: bool, optional
|
|
3745
3755
|
:param _request_timeout: timeout setting for this request.
|
|
@@ -3757,17 +3767,17 @@ class TransactionPortfoliosApi:
|
|
|
3757
3767
|
raise ValueError(message)
|
|
3758
3768
|
if async_req is not None:
|
|
3759
3769
|
kwargs['async_req'] = async_req
|
|
3760
|
-
return self.get_holdings_with_orders_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, recipe_id_scope, recipe_id_code, **kwargs) # noqa: E501
|
|
3770
|
+
return self.get_holdings_with_orders_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, recipe_id_scope, recipe_id_code, include_settlement_events_after_days, **kwargs) # noqa: E501
|
|
3761
3771
|
|
|
3762
3772
|
@validate_arguments
|
|
3763
|
-
def get_holdings_with_orders_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
3773
|
+
def get_holdings_with_orders_with_http_info(self, scope : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The scope of the transaction portfolio.")], code : Annotated[constr(strict=True, max_length=64, min_length=1), Field(..., description="The code of the transaction portfolio. Together with the scope this uniquely identifies the transaction portfolio.")], effective_at : Annotated[Optional[StrictStr], Field(description="The effective datetime or cut label at which to retrieve the holdings of the transaction portfolio. Defaults to the current LUSID system datetime if not specified.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the holdings of the transaction portfolio. Defaults to return the latest version of the holdings if not specified.")] = None, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set. For example, to filter on the Holding Type, use \"holdingType eq 'p'\" For more information about filtering LUSID results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the \"Instrument\", \"Holding\" or \"Portfolio\" domain to decorate onto the holdings. These take the format {domain}/{scope}/{code} e.g. \"Instrument/system/Name\" or \"Holding/system/Cost\".")] = None, by_taxlots : Annotated[Optional[StrictBool], Field(description="Whether or not to expand the holdings to return the underlying tax-lots. Defaults to False.")] = None, recipe_id_scope : Annotated[Optional[StrictStr], Field(description="The scope of the given recipeId")] = None, recipe_id_code : Annotated[Optional[StrictStr], Field(description="The code of the given recipeId")] = None, include_settlement_events_after_days : Annotated[Optional[StrictInt], Field(description="Number of days ahead to bring back settlements from, in relation to the specified effectiveAt")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
|
3764
3774
|
"""[EXPERIMENTAL] GetHoldingsWithOrders: Get holdings with orders # noqa: E501
|
|
3765
3775
|
|
|
3766
3776
|
Get the holdings of a transaction portfolio. Create virtual holdings for any outstanding orders, and account for order state/fulfillment; that is, treat outstanding orders (and related records) as if they had been realised at moment of query. # noqa: E501
|
|
3767
3777
|
This method makes a synchronous HTTP request by default. To make an
|
|
3768
3778
|
asynchronous HTTP request, please pass async_req=True
|
|
3769
3779
|
|
|
3770
|
-
>>> thread = api.get_holdings_with_orders_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, recipe_id_scope, recipe_id_code, async_req=True)
|
|
3780
|
+
>>> thread = api.get_holdings_with_orders_with_http_info(scope, code, effective_at, as_at, filter, property_keys, by_taxlots, recipe_id_scope, recipe_id_code, include_settlement_events_after_days, async_req=True)
|
|
3771
3781
|
>>> result = thread.get()
|
|
3772
3782
|
|
|
3773
3783
|
:param scope: The scope of the transaction portfolio. (required)
|
|
@@ -3788,6 +3798,8 @@ class TransactionPortfoliosApi:
|
|
|
3788
3798
|
:type recipe_id_scope: str
|
|
3789
3799
|
:param recipe_id_code: The code of the given recipeId
|
|
3790
3800
|
:type recipe_id_code: str
|
|
3801
|
+
:param include_settlement_events_after_days: Number of days ahead to bring back settlements from, in relation to the specified effectiveAt
|
|
3802
|
+
:type include_settlement_events_after_days: int
|
|
3791
3803
|
:param async_req: Whether to execute the request asynchronously.
|
|
3792
3804
|
:type async_req: bool, optional
|
|
3793
3805
|
:param _preload_content: if False, the ApiResponse.data will
|
|
@@ -3824,7 +3836,8 @@ class TransactionPortfoliosApi:
|
|
|
3824
3836
|
'property_keys',
|
|
3825
3837
|
'by_taxlots',
|
|
3826
3838
|
'recipe_id_scope',
|
|
3827
|
-
'recipe_id_code'
|
|
3839
|
+
'recipe_id_code',
|
|
3840
|
+
'include_settlement_events_after_days'
|
|
3828
3841
|
]
|
|
3829
3842
|
_all_params.extend(
|
|
3830
3843
|
[
|
|
@@ -3886,6 +3899,9 @@ class TransactionPortfoliosApi:
|
|
|
3886
3899
|
if _params.get('recipe_id_code') is not None: # noqa: E501
|
|
3887
3900
|
_query_params.append(('recipeIdCode', _params['recipe_id_code']))
|
|
3888
3901
|
|
|
3902
|
+
if _params.get('include_settlement_events_after_days') is not None: # noqa: E501
|
|
3903
|
+
_query_params.append(('includeSettlementEventsAfterDays', _params['include_settlement_events_after_days']))
|
|
3904
|
+
|
|
3889
3905
|
# process the header parameters
|
|
3890
3906
|
_header_params = dict(_params.get('_headers', {}))
|
|
3891
3907
|
# process the form parameters
|
lusid/configuration.py
CHANGED
|
@@ -373,7 +373,7 @@ class Configuration:
|
|
|
373
373
|
return "Python SDK Debug Report:\n"\
|
|
374
374
|
"OS: {env}\n"\
|
|
375
375
|
"Python Version: {pyversion}\n"\
|
|
376
|
-
"Version of the API: 0.11.
|
|
376
|
+
"Version of the API: 0.11.6567\n"\
|
|
377
377
|
"SDK Package Version: {package_version}".\
|
|
378
378
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
|
379
379
|
|
lusid/models/__init__.py
CHANGED
|
@@ -802,6 +802,7 @@ from lusid.models.set_person_properties_request import SetPersonPropertiesReques
|
|
|
802
802
|
from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
|
|
803
803
|
from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
|
|
804
804
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
|
805
|
+
from lusid.models.settlement_schedule import SettlementSchedule
|
|
805
806
|
from lusid.models.side_configuration_data import SideConfigurationData
|
|
806
807
|
from lusid.models.side_configuration_data_request import SideConfigurationDataRequest
|
|
807
808
|
from lusid.models.side_definition import SideDefinition
|
|
@@ -1778,6 +1779,7 @@ __all__ = [
|
|
|
1778
1779
|
"SetShareClassInstrumentsRequest",
|
|
1779
1780
|
"SetTransactionConfigurationAlias",
|
|
1780
1781
|
"SetTransactionConfigurationSourceRequest",
|
|
1782
|
+
"SettlementSchedule",
|
|
1781
1783
|
"SideConfigurationData",
|
|
1782
1784
|
"SideConfigurationDataRequest",
|
|
1783
1785
|
"SideDefinition",
|
|
@@ -18,11 +18,12 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
from typing import Any, Dict, Optional, Union
|
|
22
|
-
from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, constr
|
|
21
|
+
from typing import Any, Dict, List, Optional, Union
|
|
22
|
+
from pydantic.v1 import BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr
|
|
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.settlement_schedule import SettlementSchedule
|
|
26
27
|
from lusid.models.transaction import Transaction
|
|
27
28
|
|
|
28
29
|
class PortfolioHolding(BaseModel):
|
|
@@ -47,7 +48,8 @@ class PortfolioHolding(BaseModel):
|
|
|
47
48
|
amortised_cost_portfolio_ccy: Optional[CurrencyAndAmount] = Field(None, alias="amortisedCostPortfolioCcy")
|
|
48
49
|
variation_margin: Optional[CurrencyAndAmount] = Field(None, alias="variationMargin")
|
|
49
50
|
variation_margin_portfolio_ccy: Optional[CurrencyAndAmount] = Field(None, alias="variationMarginPortfolioCcy")
|
|
50
|
-
|
|
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.")
|
|
52
|
+
__properties = ["instrumentScope", "instrumentUid", "subHoldingKeys", "properties", "holdingType", "units", "settledUnits", "cost", "costPortfolioCcy", "transaction", "currency", "holdingTypeName", "holdingId", "notionalCost", "amortisedCost", "amortisedCostPortfolioCcy", "variationMargin", "variationMarginPortfolioCcy", "settlementSchedule"]
|
|
51
53
|
|
|
52
54
|
class Config:
|
|
53
55
|
"""Pydantic configuration"""
|
|
@@ -111,6 +113,13 @@ class PortfolioHolding(BaseModel):
|
|
|
111
113
|
# override the default output from pydantic by calling `to_dict()` of variation_margin_portfolio_ccy
|
|
112
114
|
if self.variation_margin_portfolio_ccy:
|
|
113
115
|
_dict['variationMarginPortfolioCcy'] = self.variation_margin_portfolio_ccy.to_dict()
|
|
116
|
+
# override the default output from pydantic by calling `to_dict()` of each item in settlement_schedule (list)
|
|
117
|
+
_items = []
|
|
118
|
+
if self.settlement_schedule:
|
|
119
|
+
for _item in self.settlement_schedule:
|
|
120
|
+
if _item:
|
|
121
|
+
_items.append(_item.to_dict())
|
|
122
|
+
_dict['settlementSchedule'] = _items
|
|
114
123
|
# set to None if instrument_scope (nullable) is None
|
|
115
124
|
# and __fields_set__ contains the field
|
|
116
125
|
if self.instrument_scope is None and "instrument_scope" in self.__fields_set__:
|
|
@@ -141,6 +150,11 @@ class PortfolioHolding(BaseModel):
|
|
|
141
150
|
if self.holding_id is None and "holding_id" in self.__fields_set__:
|
|
142
151
|
_dict['holdingId'] = None
|
|
143
152
|
|
|
153
|
+
# set to None if settlement_schedule (nullable) is None
|
|
154
|
+
# and __fields_set__ contains the field
|
|
155
|
+
if self.settlement_schedule is None and "settlement_schedule" in self.__fields_set__:
|
|
156
|
+
_dict['settlementSchedule'] = None
|
|
157
|
+
|
|
144
158
|
return _dict
|
|
145
159
|
|
|
146
160
|
@classmethod
|
|
@@ -180,6 +194,7 @@ class PortfolioHolding(BaseModel):
|
|
|
180
194
|
"amortised_cost": CurrencyAndAmount.from_dict(obj.get("amortisedCost")) if obj.get("amortisedCost") is not None else None,
|
|
181
195
|
"amortised_cost_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("amortisedCostPortfolioCcy")) if obj.get("amortisedCostPortfolioCcy") is not None else None,
|
|
182
196
|
"variation_margin": CurrencyAndAmount.from_dict(obj.get("variationMargin")) if obj.get("variationMargin") is not None else None,
|
|
183
|
-
"variation_margin_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("variationMarginPortfolioCcy")) if obj.get("variationMarginPortfolioCcy") is not None else None
|
|
197
|
+
"variation_margin_portfolio_ccy": CurrencyAndAmount.from_dict(obj.get("variationMarginPortfolioCcy")) if obj.get("variationMarginPortfolioCcy") is not None else None,
|
|
198
|
+
"settlement_schedule": [SettlementSchedule.from_dict(_item) for _item in obj.get("settlementSchedule")] if obj.get("settlementSchedule") is not None else None
|
|
184
199
|
})
|
|
185
200
|
return _obj
|
|
@@ -0,0 +1,78 @@
|
|
|
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 BaseModel, Field, StrictFloat, StrictInt, StrictStr
|
|
23
|
+
|
|
24
|
+
class SettlementSchedule(BaseModel):
|
|
25
|
+
"""
|
|
26
|
+
SettlementSchedule
|
|
27
|
+
"""
|
|
28
|
+
trade_id: Optional[StrictStr] = Field(None, alias="tradeId")
|
|
29
|
+
settlement_date: Optional[datetime] = Field(None, alias="settlementDate")
|
|
30
|
+
units: Optional[Union[StrictFloat, StrictInt]] = None
|
|
31
|
+
__properties = ["tradeId", "settlementDate", "units"]
|
|
32
|
+
|
|
33
|
+
class Config:
|
|
34
|
+
"""Pydantic configuration"""
|
|
35
|
+
allow_population_by_field_name = True
|
|
36
|
+
validate_assignment = True
|
|
37
|
+
|
|
38
|
+
def to_str(self) -> str:
|
|
39
|
+
"""Returns the string representation of the model using alias"""
|
|
40
|
+
return pprint.pformat(self.dict(by_alias=True))
|
|
41
|
+
|
|
42
|
+
def to_json(self) -> str:
|
|
43
|
+
"""Returns the JSON representation of the model using alias"""
|
|
44
|
+
return json.dumps(self.to_dict())
|
|
45
|
+
|
|
46
|
+
@classmethod
|
|
47
|
+
def from_json(cls, json_str: str) -> SettlementSchedule:
|
|
48
|
+
"""Create an instance of SettlementSchedule from a JSON string"""
|
|
49
|
+
return cls.from_dict(json.loads(json_str))
|
|
50
|
+
|
|
51
|
+
def to_dict(self):
|
|
52
|
+
"""Returns the dictionary representation of the model using alias"""
|
|
53
|
+
_dict = self.dict(by_alias=True,
|
|
54
|
+
exclude={
|
|
55
|
+
},
|
|
56
|
+
exclude_none=True)
|
|
57
|
+
# set to None if trade_id (nullable) is None
|
|
58
|
+
# and __fields_set__ contains the field
|
|
59
|
+
if self.trade_id is None and "trade_id" in self.__fields_set__:
|
|
60
|
+
_dict['tradeId'] = None
|
|
61
|
+
|
|
62
|
+
return _dict
|
|
63
|
+
|
|
64
|
+
@classmethod
|
|
65
|
+
def from_dict(cls, obj: dict) -> SettlementSchedule:
|
|
66
|
+
"""Create an instance of SettlementSchedule from a dict"""
|
|
67
|
+
if obj is None:
|
|
68
|
+
return None
|
|
69
|
+
|
|
70
|
+
if not isinstance(obj, dict):
|
|
71
|
+
return SettlementSchedule.parse_obj(obj)
|
|
72
|
+
|
|
73
|
+
_obj = SettlementSchedule.parse_obj({
|
|
74
|
+
"trade_id": obj.get("tradeId"),
|
|
75
|
+
"settlement_date": obj.get("settlementDate"),
|
|
76
|
+
"units": obj.get("units")
|
|
77
|
+
})
|
|
78
|
+
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.133
|
|
4
4
|
Summary: LUSID API
|
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
|
6
6
|
License: MIT
|
|
@@ -29,8 +29,8 @@ FINBOURNE Technology
|
|
|
29
29
|
|
|
30
30
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
31
31
|
|
|
32
|
-
- API version: 0.11.
|
|
33
|
-
- Package version: 2.1.
|
|
32
|
+
- API version: 0.11.6567
|
|
33
|
+
- Package version: 2.1.133
|
|
34
34
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
35
35
|
For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)
|
|
36
36
|
|
|
@@ -1527,6 +1527,7 @@ Class | Method | HTTP request | Description
|
|
|
1527
1527
|
- [SetShareClassInstrumentsRequest](docs/SetShareClassInstrumentsRequest.md)
|
|
1528
1528
|
- [SetTransactionConfigurationAlias](docs/SetTransactionConfigurationAlias.md)
|
|
1529
1529
|
- [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
|
|
1530
|
+
- [SettlementSchedule](docs/SettlementSchedule.md)
|
|
1530
1531
|
- [SideConfigurationData](docs/SideConfigurationData.md)
|
|
1531
1532
|
- [SideConfigurationDataRequest](docs/SideConfigurationDataRequest.md)
|
|
1532
1533
|
- [SideDefinition](docs/SideDefinition.md)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lusid/__init__.py,sha256=
|
|
1
|
+
lusid/__init__.py,sha256=ZbUGLt7FVTP_82qrhnaDPsbMTlNPggX6bl9E1eZ5EQ0,108669
|
|
2
2
|
lusid/api/__init__.py,sha256=PFpT-ADthWd08-JqKOqQTbVW6cz9wdP_us6bg3aBFfs,5555
|
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
|
@@ -39,7 +39,7 @@ lusid/api/packages_api.py,sha256=-2mdoL2HSQ2aCXqYUMxt-1rrlezyQhgCNtevVazqM9o,439
|
|
|
39
39
|
lusid/api/participations_api.py,sha256=nlVzeyfE33X9Ue9HC9rqCW3WACEPKBvcrEjFEmT8wlk,45263
|
|
40
40
|
lusid/api/persons_api.py,sha256=0ZUZykUD46ow8j6sXjqaxCTylzUkssOyimAxCoDMUb4,247306
|
|
41
41
|
lusid/api/placements_api.py,sha256=bsX7VHZlvnxJiZ3ZPtlJ8md_exerU-Qa_BkHGVRphH8,45797
|
|
42
|
-
lusid/api/portfolio_groups_api.py,sha256=
|
|
42
|
+
lusid/api/portfolio_groups_api.py,sha256=UOgXaH_dIPa7TWyv5y92t4Vnq-B0qEL0AyjHkjvTyAo,380512
|
|
43
43
|
lusid/api/portfolios_api.py,sha256=r_4nQjfexY60BRX67DRRMqeHmRh1YKvwF__LiBcnNSk,421481
|
|
44
44
|
lusid/api/property_definitions_api.py,sha256=Z2HQywmPS1T5DGOCr4BEWX2QmUVhuqLnQSEa4hZZwxo,140397
|
|
45
45
|
lusid/api/queryable_keys_api.py,sha256=1HafmN22bU1bV5H5nua8EZ5oL0pe0LZ5xkVDQTDSezg,10281
|
|
@@ -63,11 +63,11 @@ lusid/api/system_configuration_api.py,sha256=aOgevINKgf3CDjXN4cW6R-eoTYfvz8me_wV
|
|
|
63
63
|
lusid/api/tax_rule_sets_api.py,sha256=wbF6-lv5DMCglbExtQFB5wyAVRJxNJWROyq2lyb7qR8,50024
|
|
64
64
|
lusid/api/transaction_configuration_api.py,sha256=BVe83Sp6eRpzjpQPEx2jMEbo55Vu6pa7tbL9bEv-ZGY,107626
|
|
65
65
|
lusid/api/transaction_fees_api.py,sha256=xVH3EPyc0clDSNivBO57PsKxaVNT3evVvPdfYWooyyM,64512
|
|
66
|
-
lusid/api/transaction_portfolios_api.py,sha256=
|
|
66
|
+
lusid/api/transaction_portfolios_api.py,sha256=3HznPMjDx_ohFwiJN8pii2aS8NMeKu23KgybMVxjnwg,558188
|
|
67
67
|
lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,20092
|
|
68
68
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
|
69
69
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
|
70
|
-
lusid/configuration.py,sha256=
|
|
70
|
+
lusid/configuration.py,sha256=LC88iGcsDsCk1k1uEmJjoSUaJ7G_fvc9Ct1T-muNbVo,14404
|
|
71
71
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
|
72
72
|
lusid/extensions/__init__.py,sha256=DeUuQP7yTcklJH7LT-bw9wQhKEggcs1KwQbPbFcOlhw,560
|
|
73
73
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
|
@@ -80,7 +80,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
|
80
80
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
|
81
81
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
|
82
82
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
|
83
|
-
lusid/models/__init__.py,sha256=
|
|
83
|
+
lusid/models/__init__.py,sha256=Z2oXMAEHEfw5Dcxm0noy6vigXsMcJS6ClprEw_TVdjs,102157
|
|
84
84
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
|
85
85
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
|
86
86
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
|
@@ -673,7 +673,7 @@ lusid/models/portfolio_group_id_list.py,sha256=Ezx5rsh8tu-YcuP8CNIlid5v_zJGKiGEr
|
|
|
673
673
|
lusid/models/portfolio_group_id_list_compliance_parameter.py,sha256=ZEOFss9oiXeSlBxfItd06NMTxi8arQXnriy0MAKL81A,5553
|
|
674
674
|
lusid/models/portfolio_group_properties.py,sha256=TXoraXowbiMx0fh5_VWJWPA7NZ85eRFw0w_A6jpRpus,4343
|
|
675
675
|
lusid/models/portfolio_group_search_result.py,sha256=rDJjz4MXk3f9yUd_DF4kBiOkaJsST4e0rjmU25p2CHM,6286
|
|
676
|
-
lusid/models/portfolio_holding.py,sha256=
|
|
676
|
+
lusid/models/portfolio_holding.py,sha256=mZVqQI4nYhCXPALqRxvqb1xCRlv12uMZLspvNIoRbog,11653
|
|
677
677
|
lusid/models/portfolio_id_compliance_parameter.py,sha256=5Ym-7OavrqOEzW22Yg1ZPSI9YmZmgT2tqGwNGzVy484,5481
|
|
678
678
|
lusid/models/portfolio_id_list.py,sha256=zCe0UDzkP1VjIQHfxBjf-hlL0TEuxlGqGSmyP-6prlo,3706
|
|
679
679
|
lusid/models/portfolio_id_list_compliance_parameter.py,sha256=EJ-sl1bj21kAQSKBItZmxLPFgLhOxG3FkhDTU62hfJs,5513
|
|
@@ -869,6 +869,7 @@ lusid/models/set_person_properties_request.py,sha256=FXPOJyoce61CAgZq8jwzKz8teh-
|
|
|
869
869
|
lusid/models/set_share_class_instruments_request.py,sha256=v5sYOS9s9oZWnD6SlYZ41yWZbdNOogLsEUg6mgKORnI,3083
|
|
870
870
|
lusid/models/set_transaction_configuration_alias.py,sha256=FTa9WQPxzZYO6DguFirEwBB8yfg9ckl_rYeDq9e0wN8,2936
|
|
871
871
|
lusid/models/set_transaction_configuration_source_request.py,sha256=Sz1Kp__LcFo1ubK2S7lf5_NTjFL9Ab23kHikaj8DWxQ,4226
|
|
872
|
+
lusid/models/settlement_schedule.py,sha256=59PJAHeLK6_fxSRjQ7wGk4zUbyIMjZhiZ-RJ1aH22FY,2420
|
|
872
873
|
lusid/models/side_configuration_data.py,sha256=iv4nyDEEAYA2TUfY-dlqOGwn-mft8qMGVQk6itgxqe4,3518
|
|
873
874
|
lusid/models/side_configuration_data_request.py,sha256=qWt-UDjQbcoPpHCUpRwcSN8NFfcZ4TpHMn2dRuR3WVw,2842
|
|
874
875
|
lusid/models/side_definition.py,sha256=GpAnmArPMxwMe_BHZVihoYi9-Dl8HbQJ3nW4QAxXXow,4149
|
|
@@ -1056,6 +1057,6 @@ lusid/models/weighted_instruments.py,sha256=1y_y_vw4-LPsbkQx4FOzWdZc5fJnzhVkf1D3
|
|
|
1056
1057
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
|
1057
1058
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1058
1059
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
|
1059
|
-
lusid_sdk-2.1.
|
|
1060
|
-
lusid_sdk-2.1.
|
|
1061
|
-
lusid_sdk-2.1.
|
|
1060
|
+
lusid_sdk-2.1.133.dist-info/METADATA,sha256=Jcah6oUL-SaDETOMXddn3b-4MITL7HodrKiQm1LStDw,187036
|
|
1061
|
+
lusid_sdk-2.1.133.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
1062
|
+
lusid_sdk-2.1.133.dist-info/RECORD,,
|
|
File without changes
|