lusid-sdk 2.1.962__py3-none-any.whl → 2.1.964__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lusid/__init__.py +2 -0
- lusid/api/funds_api.py +16 -8
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +2 -0
- lusid/models/fund.py +9 -2
- lusid/models/fund_definition_request.py +14 -2
- lusid/models/output_transaction.py +16 -2
- lusid/models/settlement_in_lieu.py +84 -0
- lusid/models/settlement_instruction_request.py +8 -2
- lusid/models/transaction_settlement_instruction.py +8 -2
- lusid/models/valuation_point_data_query_parameters.py +3 -5
- {lusid_sdk-2.1.962.dist-info → lusid_sdk-2.1.964.dist-info}/METADATA +2 -1
- {lusid_sdk-2.1.962.dist-info → lusid_sdk-2.1.964.dist-info}/RECORD +14 -13
- {lusid_sdk-2.1.962.dist-info → lusid_sdk-2.1.964.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
@@ -1146,6 +1146,7 @@ from lusid.models.set_transaction_configuration_alias import SetTransactionConfi
|
|
1146
1146
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
1147
1147
|
from lusid.models.settlement_configuration_category import SettlementConfigurationCategory
|
1148
1148
|
from lusid.models.settlement_cycle import SettlementCycle
|
1149
|
+
from lusid.models.settlement_in_lieu import SettlementInLieu
|
1149
1150
|
from lusid.models.settlement_instruction_query import SettlementInstructionQuery
|
1150
1151
|
from lusid.models.settlement_instruction_request import SettlementInstructionRequest
|
1151
1152
|
from lusid.models.settlement_instruction_with_transaction import SettlementInstructionWithTransaction
|
@@ -2533,6 +2534,7 @@ __all__ = [
|
|
2533
2534
|
"SetTransactionConfigurationSourceRequest",
|
2534
2535
|
"SettlementConfigurationCategory",
|
2535
2536
|
"SettlementCycle",
|
2537
|
+
"SettlementInLieu",
|
2536
2538
|
"SettlementInstructionQuery",
|
2537
2539
|
"SettlementInstructionRequest",
|
2538
2540
|
"SettlementInstructionWithTransaction",
|
lusid/api/funds_api.py
CHANGED
@@ -3706,22 +3706,22 @@ class FundsApi:
|
|
3706
3706
|
|
3707
3707
|
|
3708
3708
|
@overload
|
3709
|
-
async def get_valuation_point_trial_balance(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
|
3709
|
+
async def get_valuation_point_trial_balance(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, exclude_cleardown_module : Annotated[Optional[StrictBool], Field(description="If this is set to true, no Cleardown Module will be applied to the Trial Balance. Defaults to false.")] = None, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
|
3710
3710
|
...
|
3711
3711
|
|
3712
3712
|
@overload
|
3713
|
-
def get_valuation_point_trial_balance(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, async_req: Optional[bool]=True, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
|
3713
|
+
def get_valuation_point_trial_balance(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, exclude_cleardown_module : Annotated[Optional[StrictBool], Field(description="If this is set to true, no Cleardown Module will be applied to the Trial Balance. Defaults to false.")] = None, async_req: Optional[bool]=True, **kwargs) -> ValuationPointResourceListOfTrialBalance: # noqa: E501
|
3714
3714
|
...
|
3715
3715
|
|
3716
3716
|
@validate_arguments
|
3717
|
-
def get_valuation_point_trial_balance(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ValuationPointResourceListOfTrialBalance, Awaitable[ValuationPointResourceListOfTrialBalance]]: # noqa: E501
|
3717
|
+
def get_valuation_point_trial_balance(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, exclude_cleardown_module : Annotated[Optional[StrictBool], Field(description="If this is set to true, no Cleardown Module will be applied to the Trial Balance. Defaults to false.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[ValuationPointResourceListOfTrialBalance, Awaitable[ValuationPointResourceListOfTrialBalance]]: # noqa: E501
|
3718
3718
|
"""[EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund. # noqa: E501
|
3719
3719
|
|
3720
3720
|
Gets the Trial Balance for the given Valuation Point for a Fund. The Trial Balance has been generated from transactions, translated via Posting Rules and aggregated based on a General Ledger Profile (where specified). # noqa: E501
|
3721
3721
|
This method makes a synchronous HTTP request by default. To make an
|
3722
3722
|
asynchronous HTTP request, please pass async_req=True
|
3723
3723
|
|
3724
|
-
>>> thread = api.get_valuation_point_trial_balance(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, nav_type_code, async_req=True)
|
3724
|
+
>>> thread = api.get_valuation_point_trial_balance(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, nav_type_code, exclude_cleardown_module, async_req=True)
|
3725
3725
|
>>> result = thread.get()
|
3726
3726
|
|
3727
3727
|
:param scope: The scope of the Fund. (required)
|
@@ -3744,6 +3744,8 @@ class FundsApi:
|
|
3744
3744
|
:type property_keys: List[str]
|
3745
3745
|
:param nav_type_code: When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.
|
3746
3746
|
:type nav_type_code: str
|
3747
|
+
:param exclude_cleardown_module: If this is set to true, no Cleardown Module will be applied to the Trial Balance. Defaults to false.
|
3748
|
+
:type exclude_cleardown_module: bool
|
3747
3749
|
:param async_req: Whether to execute the request asynchronously.
|
3748
3750
|
:type async_req: bool, optional
|
3749
3751
|
:param _request_timeout: Timeout setting. Do not use - use the opts parameter instead
|
@@ -3760,17 +3762,17 @@ class FundsApi:
|
|
3760
3762
|
raise ValueError(message)
|
3761
3763
|
if async_req is not None:
|
3762
3764
|
kwargs['async_req'] = async_req
|
3763
|
-
return self.get_valuation_point_trial_balance_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, nav_type_code, **kwargs) # noqa: E501
|
3765
|
+
return self.get_valuation_point_trial_balance_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, nav_type_code, exclude_cleardown_module, **kwargs) # noqa: E501
|
3764
3766
|
|
3765
3767
|
@validate_arguments
|
3766
|
-
def get_valuation_point_trial_balance_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
3768
|
+
def get_valuation_point_trial_balance_with_http_info(self, scope : Annotated[StrictStr, Field(..., description="The scope of the Fund.")], code : Annotated[StrictStr, Field(..., description="The code of the Fund. Together with the scope this uniquely identifies the Fund.")], valuation_point_data_query_parameters : Annotated[ValuationPointDataQueryParameters, Field(..., description="The arguments to use for generating the Trial Balance.")], general_ledger_profile_code : Annotated[Optional[StrictStr], Field( description="The optional code of a General Ledger Profile used to decorate Journal Entry Lines with levels.")] = None, as_at : Annotated[Optional[datetime], Field(description="The asAt datetime at which to retrieve the Trial Balance. Defaults to returning the latest version if not specified.")] = None, filter : Annotated[Optional[StrictStr], Field( description="Expression to filter the results by. For more information about filtering results, see https://support.lusid.com/knowledgebase/article/KA-01914.")] = None, limit : Annotated[Optional[conint(strict=True)], Field(description="When paginating, limit the number of returned results to this number. Defaults to 100 if not specified.")] = None, page : Annotated[Optional[StrictStr], Field( description="The pagination token to use to continue listing Trial Balances. This token is returned from the previous call. If a pagination token is provided, the filter, effectiveAt and asAt fields must not have changed since the original request.")] = None, property_keys : Annotated[Optional[conlist(StrictStr)], Field(description="A list of property keys from the 'Instrument', 'Transaction', 'Portfolio', 'Account', 'LegalEntity' or 'CustodianAccount' domain to decorate onto the TrialBalance.")] = None, nav_type_code : Annotated[Optional[StrictStr], Field( description="When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.")] = None, exclude_cleardown_module : Annotated[Optional[StrictBool], Field(description="If this is set to true, no Cleardown Module will be applied to the Trial Balance. Defaults to false.")] = None, **kwargs) -> ApiResponse: # noqa: E501
|
3767
3769
|
"""[EXPERIMENTAL] GetValuationPointTrialBalance: Get Trial Balance for the given Fund. # noqa: E501
|
3768
3770
|
|
3769
3771
|
Gets the Trial Balance for the given Valuation Point for a Fund. The Trial Balance has been generated from transactions, translated via Posting Rules and aggregated based on a General Ledger Profile (where specified). # noqa: E501
|
3770
3772
|
This method makes a synchronous HTTP request by default. To make an
|
3771
3773
|
asynchronous HTTP request, please pass async_req=True
|
3772
3774
|
|
3773
|
-
>>> thread = api.get_valuation_point_trial_balance_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, nav_type_code, async_req=True)
|
3775
|
+
>>> thread = api.get_valuation_point_trial_balance_with_http_info(scope, code, valuation_point_data_query_parameters, general_ledger_profile_code, as_at, filter, limit, page, property_keys, nav_type_code, exclude_cleardown_module, async_req=True)
|
3774
3776
|
>>> result = thread.get()
|
3775
3777
|
|
3776
3778
|
:param scope: The scope of the Fund. (required)
|
@@ -3793,6 +3795,8 @@ class FundsApi:
|
|
3793
3795
|
:type property_keys: List[str]
|
3794
3796
|
:param nav_type_code: When provided, runs against the specified NAV Type, otherwise the Primary NAV Type will be used.
|
3795
3797
|
:type nav_type_code: str
|
3798
|
+
:param exclude_cleardown_module: If this is set to true, no Cleardown Module will be applied to the Trial Balance. Defaults to false.
|
3799
|
+
:type exclude_cleardown_module: bool
|
3796
3800
|
:param async_req: Whether to execute the request asynchronously.
|
3797
3801
|
:type async_req: bool, optional
|
3798
3802
|
:param _preload_content: if False, the ApiResponse.data will
|
@@ -3829,7 +3833,8 @@ class FundsApi:
|
|
3829
3833
|
'limit',
|
3830
3834
|
'page',
|
3831
3835
|
'property_keys',
|
3832
|
-
'nav_type_code'
|
3836
|
+
'nav_type_code',
|
3837
|
+
'exclude_cleardown_module'
|
3833
3838
|
]
|
3834
3839
|
_all_params.extend(
|
3835
3840
|
[
|
@@ -3892,6 +3897,9 @@ class FundsApi:
|
|
3892
3897
|
if _params.get('nav_type_code') is not None: # noqa: E501
|
3893
3898
|
_query_params.append(('navTypeCode', _params['nav_type_code']))
|
3894
3899
|
|
3900
|
+
if _params.get('exclude_cleardown_module') is not None: # noqa: E501
|
3901
|
+
_query_params.append(('excludeCleardownModule', _params['exclude_cleardown_module']))
|
3902
|
+
|
3895
3903
|
# process the header parameters
|
3896
3904
|
_header_params = dict(_params.get('_headers', {}))
|
3897
3905
|
# process the form parameters
|
lusid/configuration.py
CHANGED
@@ -445,7 +445,7 @@ class Configuration:
|
|
445
445
|
return "Python SDK Debug Report:\n"\
|
446
446
|
"OS: {env}\n"\
|
447
447
|
"Python Version: {pyversion}\n"\
|
448
|
-
"Version of the API: 0.11.
|
448
|
+
"Version of the API: 0.11.8328\n"\
|
449
449
|
"SDK Package Version: {package_version}".\
|
450
450
|
format(env=sys.platform, pyversion=sys.version, package_version=package_version)
|
451
451
|
|
lusid/models/__init__.py
CHANGED
@@ -1055,6 +1055,7 @@ from lusid.models.set_transaction_configuration_alias import SetTransactionConfi
|
|
1055
1055
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
1056
1056
|
from lusid.models.settlement_configuration_category import SettlementConfigurationCategory
|
1057
1057
|
from lusid.models.settlement_cycle import SettlementCycle
|
1058
|
+
from lusid.models.settlement_in_lieu import SettlementInLieu
|
1058
1059
|
from lusid.models.settlement_instruction_query import SettlementInstructionQuery
|
1059
1060
|
from lusid.models.settlement_instruction_request import SettlementInstructionRequest
|
1060
1061
|
from lusid.models.settlement_instruction_with_transaction import SettlementInstructionWithTransaction
|
@@ -2352,6 +2353,7 @@ __all__ = [
|
|
2352
2353
|
"SetTransactionConfigurationSourceRequest",
|
2353
2354
|
"SettlementConfigurationCategory",
|
2354
2355
|
"SettlementCycle",
|
2356
|
+
"SettlementInLieu",
|
2355
2357
|
"SettlementInstructionQuery",
|
2356
2358
|
"SettlementInstructionRequest",
|
2357
2359
|
"SettlementInstructionWithTransaction",
|
lusid/models/fund.py
CHANGED
@@ -38,11 +38,12 @@ class Fund(BaseModel):
|
|
38
38
|
display_name: Optional[StrictStr] = Field(None,alias="displayName", description="The name of the Fund.")
|
39
39
|
description: Optional[StrictStr] = Field(None,alias="description", description="A description for the Fund.")
|
40
40
|
base_currency: Optional[StrictStr] = Field(None,alias="baseCurrency", description="The base currency of the Fund in ISO 4217 currency code format. All portfolios must be of a matching base currency.")
|
41
|
+
investor_structure: StrictStr = Field(...,alias="investorStructure", description="The Investor structure to be used by the Fund. Supported values are 'NonUnitised', 'Classes' and 'Custom'.")
|
41
42
|
portfolio_ids: Optional[conlist(PortfolioEntityIdWithDetails)] = Field(None, alias="portfolioIds", description="A list of the portfolios on the fund, which are part of the Fund. Note: These must all have the same base currency, which must also much the Fund Base Currency.")
|
42
43
|
fund_configuration_id: Optional[ResourceId] = Field(None, alias="fundConfigurationId")
|
43
44
|
abor_id: Optional[ResourceId] = Field(None, alias="aborId")
|
44
45
|
share_class_instruments: Optional[conlist(InstrumentResolutionDetail)] = Field(None, alias="shareClassInstruments", description="Details the user-provided instrument identifiers and the instrument resolved from them.")
|
45
|
-
type: StrictStr = Field(
|
46
|
+
type: Optional[StrictStr] = Field(None,alias="type", description="The type of fund; 'Standalone', 'Master' or 'Feeder'")
|
46
47
|
inception_date: datetime = Field(..., alias="inceptionDate", description="Inception date of the Fund")
|
47
48
|
decimal_places: Optional[conint(strict=True)] = Field(None, alias="decimalPlaces", description="Number of decimal places for reporting")
|
48
49
|
year_end_date: Optional[DayMonth] = Field(None, alias="yearEndDate")
|
@@ -51,7 +52,7 @@ class Fund(BaseModel):
|
|
51
52
|
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Fund.")
|
52
53
|
version: Optional[Version] = None
|
53
54
|
links: Optional[conlist(Link)] = None
|
54
|
-
__properties = ["href", "id", "displayName", "description", "baseCurrency", "portfolioIds", "fundConfigurationId", "aborId", "shareClassInstruments", "type", "inceptionDate", "decimalPlaces", "yearEndDate", "primaryNavType", "additionalNavTypes", "properties", "version", "links"]
|
55
|
+
__properties = ["href", "id", "displayName", "description", "baseCurrency", "investorStructure", "portfolioIds", "fundConfigurationId", "aborId", "shareClassInstruments", "type", "inceptionDate", "decimalPlaces", "yearEndDate", "primaryNavType", "additionalNavTypes", "properties", "version", "links"]
|
55
56
|
|
56
57
|
class Config:
|
57
58
|
"""Pydantic configuration"""
|
@@ -168,6 +169,11 @@ class Fund(BaseModel):
|
|
168
169
|
if self.share_class_instruments is None and "share_class_instruments" in self.__fields_set__:
|
169
170
|
_dict['shareClassInstruments'] = None
|
170
171
|
|
172
|
+
# set to None if type (nullable) is None
|
173
|
+
# and __fields_set__ contains the field
|
174
|
+
if self.type is None and "type" in self.__fields_set__:
|
175
|
+
_dict['type'] = None
|
176
|
+
|
171
177
|
# set to None if decimal_places (nullable) is None
|
172
178
|
# and __fields_set__ contains the field
|
173
179
|
if self.decimal_places is None and "decimal_places" in self.__fields_set__:
|
@@ -205,6 +211,7 @@ class Fund(BaseModel):
|
|
205
211
|
"display_name": obj.get("displayName"),
|
206
212
|
"description": obj.get("description"),
|
207
213
|
"base_currency": obj.get("baseCurrency"),
|
214
|
+
"investor_structure": obj.get("investorStructure"),
|
208
215
|
"portfolio_ids": [PortfolioEntityIdWithDetails.from_dict(_item) for _item in obj.get("portfolioIds")] if obj.get("portfolioIds") is not None else None,
|
209
216
|
"fund_configuration_id": ResourceId.from_dict(obj.get("fundConfigurationId")) if obj.get("fundConfigurationId") is not None else None,
|
210
217
|
"abor_id": ResourceId.from_dict(obj.get("aborId")) if obj.get("aborId") is not None else None,
|
@@ -34,17 +34,18 @@ class FundDefinitionRequest(BaseModel):
|
|
34
34
|
display_name: StrictStr = Field(...,alias="displayName", description="The name of the Fund.")
|
35
35
|
description: Optional[StrictStr] = Field(None,alias="description", description="A description for the Fund.")
|
36
36
|
base_currency: StrictStr = Field(...,alias="baseCurrency", description="The base currency of the Fund in ISO 4217 currency code format. All portfolios must be of a matching base currency.")
|
37
|
+
investor_structure: Optional[StrictStr] = Field(None,alias="investorStructure", description="The Investor structure to be used by the Fund. Supported values are 'NonUnitised', 'Classes' and 'Custom'.")
|
37
38
|
portfolio_ids: conlist(PortfolioEntityId) = Field(..., alias="portfolioIds", description="A list of the Portfolio IDs associated with the fund, which are part of the Fund. Note: These must all have the same base currency, which must also much the Fund Base Currency.")
|
38
39
|
fund_configuration_id: ResourceId = Field(..., alias="fundConfigurationId")
|
39
40
|
share_class_instrument_scopes: Optional[conlist(StrictStr)] = Field(None, alias="shareClassInstrumentScopes", description="The scopes in which the instruments lie, currently limited to one.")
|
40
41
|
share_class_instruments: Optional[conlist(InstrumentResolutionDetail)] = Field(None, alias="shareClassInstruments", description="Details the user-provided instrument identifiers and the instrument resolved from them.")
|
41
|
-
type: StrictStr = Field(
|
42
|
+
type: Optional[StrictStr] = Field(None,alias="type", description="The type of fund; 'Standalone', 'Master' or 'Feeder'")
|
42
43
|
inception_date: datetime = Field(..., alias="inceptionDate", description="Inception date of the Fund")
|
43
44
|
decimal_places: Optional[conint(strict=True)] = Field(None, alias="decimalPlaces", description="Number of decimal places for reporting")
|
44
45
|
primary_nav_type: NavTypeDefinition = Field(..., alias="primaryNavType")
|
45
46
|
additional_nav_types: Optional[conlist(NavTypeDefinition)] = Field(None, alias="additionalNavTypes", description="The definitions for any additional NAVs on the Fund.")
|
46
47
|
properties: Optional[Dict[str, ModelProperty]] = Field(None, description="A set of properties for the Fund.")
|
47
|
-
__properties = ["code", "displayName", "description", "baseCurrency", "portfolioIds", "fundConfigurationId", "shareClassInstrumentScopes", "shareClassInstruments", "type", "inceptionDate", "decimalPlaces", "primaryNavType", "additionalNavTypes", "properties"]
|
48
|
+
__properties = ["code", "displayName", "description", "baseCurrency", "investorStructure", "portfolioIds", "fundConfigurationId", "shareClassInstrumentScopes", "shareClassInstruments", "type", "inceptionDate", "decimalPlaces", "primaryNavType", "additionalNavTypes", "properties"]
|
48
49
|
|
49
50
|
class Config:
|
50
51
|
"""Pydantic configuration"""
|
@@ -117,6 +118,11 @@ class FundDefinitionRequest(BaseModel):
|
|
117
118
|
if self.description is None and "description" in self.__fields_set__:
|
118
119
|
_dict['description'] = None
|
119
120
|
|
121
|
+
# set to None if investor_structure (nullable) is None
|
122
|
+
# and __fields_set__ contains the field
|
123
|
+
if self.investor_structure is None and "investor_structure" in self.__fields_set__:
|
124
|
+
_dict['investorStructure'] = None
|
125
|
+
|
120
126
|
# set to None if share_class_instrument_scopes (nullable) is None
|
121
127
|
# and __fields_set__ contains the field
|
122
128
|
if self.share_class_instrument_scopes is None and "share_class_instrument_scopes" in self.__fields_set__:
|
@@ -127,6 +133,11 @@ class FundDefinitionRequest(BaseModel):
|
|
127
133
|
if self.share_class_instruments is None and "share_class_instruments" in self.__fields_set__:
|
128
134
|
_dict['shareClassInstruments'] = None
|
129
135
|
|
136
|
+
# set to None if type (nullable) is None
|
137
|
+
# and __fields_set__ contains the field
|
138
|
+
if self.type is None and "type" in self.__fields_set__:
|
139
|
+
_dict['type'] = None
|
140
|
+
|
130
141
|
# set to None if decimal_places (nullable) is None
|
131
142
|
# and __fields_set__ contains the field
|
132
143
|
if self.decimal_places is None and "decimal_places" in self.__fields_set__:
|
@@ -158,6 +169,7 @@ class FundDefinitionRequest(BaseModel):
|
|
158
169
|
"display_name": obj.get("displayName"),
|
159
170
|
"description": obj.get("description"),
|
160
171
|
"base_currency": obj.get("baseCurrency"),
|
172
|
+
"investor_structure": obj.get("investorStructure"),
|
161
173
|
"portfolio_ids": [PortfolioEntityId.from_dict(_item) for _item in obj.get("portfolioIds")] if obj.get("portfolioIds") is not None else None,
|
162
174
|
"fund_configuration_id": ResourceId.from_dict(obj.get("fundConfigurationId")) if obj.get("fundConfigurationId") is not None else None,
|
163
175
|
"share_class_instrument_scopes": obj.get("shareClassInstrumentScopes"),
|
@@ -70,7 +70,9 @@ class OutputTransaction(BaseModel):
|
|
70
70
|
accounting_date: Optional[datetime] = Field(None, alias="accountingDate", description="The accounting date of the transaction.")
|
71
71
|
economics: Optional[conlist(Economics)] = Field(None, description="Set of economic data related with the transaction impacts.")
|
72
72
|
data_model_membership: Optional[DataModelMembership] = Field(None, alias="dataModelMembership")
|
73
|
-
|
73
|
+
sequence: Optional[StrictInt] = Field(None, description="The sequential position in which this transaction was processed.")
|
74
|
+
sequence_priority: Optional[StrictInt] = Field(None, alias="sequencePriority", description="The calculated priority level for this transaction.")
|
75
|
+
__properties = ["transactionId", "type", "description", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "transactionDate", "settlementDate", "units", "transactionAmount", "transactionPrice", "totalConsideration", "exchangeRate", "transactionToPortfolioRate", "transactionCurrency", "properties", "counterpartyId", "source", "transactionStatus", "entryDateTime", "cancelDateTime", "realisedGainLoss", "holdingIds", "sourceType", "sourceInstrumentEventId", "custodianAccount", "transactionGroupId", "resolvedTransactionTypeDetails", "grossTransactionAmount", "otcConfirmation", "orderId", "allocationId", "accountingDate", "economics", "dataModelMembership", "sequence", "sequencePriority"]
|
74
76
|
|
75
77
|
@validator('transaction_status')
|
76
78
|
def transaction_status_validate_enum(cls, value):
|
@@ -291,6 +293,16 @@ class OutputTransaction(BaseModel):
|
|
291
293
|
if self.economics is None and "economics" in self.__fields_set__:
|
292
294
|
_dict['economics'] = None
|
293
295
|
|
296
|
+
# set to None if sequence (nullable) is None
|
297
|
+
# and __fields_set__ contains the field
|
298
|
+
if self.sequence is None and "sequence" in self.__fields_set__:
|
299
|
+
_dict['sequence'] = None
|
300
|
+
|
301
|
+
# set to None if sequence_priority (nullable) is None
|
302
|
+
# and __fields_set__ contains the field
|
303
|
+
if self.sequence_priority is None and "sequence_priority" in self.__fields_set__:
|
304
|
+
_dict['sequencePriority'] = None
|
305
|
+
|
294
306
|
return _dict
|
295
307
|
|
296
308
|
@classmethod
|
@@ -342,6 +354,8 @@ class OutputTransaction(BaseModel):
|
|
342
354
|
"allocation_id": ResourceId.from_dict(obj.get("allocationId")) if obj.get("allocationId") is not None else None,
|
343
355
|
"accounting_date": obj.get("accountingDate"),
|
344
356
|
"economics": [Economics.from_dict(_item) for _item in obj.get("economics")] if obj.get("economics") is not None else None,
|
345
|
-
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None
|
357
|
+
"data_model_membership": DataModelMembership.from_dict(obj.get("dataModelMembership")) if obj.get("dataModelMembership") is not None else None,
|
358
|
+
"sequence": obj.get("sequence"),
|
359
|
+
"sequence_priority": obj.get("sequencePriority")
|
346
360
|
})
|
347
361
|
return _obj
|
@@ -0,0 +1,84 @@
|
|
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, Union
|
22
|
+
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr
|
23
|
+
|
24
|
+
class SettlementInLieu(BaseModel):
|
25
|
+
"""
|
26
|
+
SettlementInLieu
|
27
|
+
"""
|
28
|
+
original_settlement_currency: StrictStr = Field(...,alias="originalSettlementCurrency")
|
29
|
+
amount: Optional[Union[StrictFloat, StrictInt]] = None
|
30
|
+
__properties = ["originalSettlementCurrency", "amount"]
|
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) -> SettlementInLieu:
|
55
|
+
"""Create an instance of SettlementInLieu 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
|
+
# set to None if amount (nullable) is None
|
65
|
+
# and __fields_set__ contains the field
|
66
|
+
if self.amount is None and "amount" in self.__fields_set__:
|
67
|
+
_dict['amount'] = None
|
68
|
+
|
69
|
+
return _dict
|
70
|
+
|
71
|
+
@classmethod
|
72
|
+
def from_dict(cls, obj: dict) -> SettlementInLieu:
|
73
|
+
"""Create an instance of SettlementInLieu from a dict"""
|
74
|
+
if obj is None:
|
75
|
+
return None
|
76
|
+
|
77
|
+
if not isinstance(obj, dict):
|
78
|
+
return SettlementInLieu.parse_obj(obj)
|
79
|
+
|
80
|
+
_obj = SettlementInLieu.parse_obj({
|
81
|
+
"original_settlement_currency": obj.get("originalSettlementCurrency"),
|
82
|
+
"amount": obj.get("amount")
|
83
|
+
})
|
84
|
+
return _obj
|
@@ -22,6 +22,7 @@ from typing import Any, Dict, Optional, Union
|
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, constr
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
24
|
from lusid.models.resource_id import ResourceId
|
25
|
+
from lusid.models.settlement_in_lieu import SettlementInLieu
|
25
26
|
|
26
27
|
class SettlementInstructionRequest(BaseModel):
|
27
28
|
"""
|
@@ -38,7 +39,8 @@ class SettlementInstructionRequest(BaseModel):
|
|
38
39
|
sub_holding_key_overrides: Optional[Dict[str, PerpetualProperty]] = Field(None, alias="subHoldingKeyOverrides")
|
39
40
|
custodian_account_override: Optional[ResourceId] = Field(None, alias="custodianAccountOverride")
|
40
41
|
instruction_to_portfolio_rate: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="instructionToPortfolioRate")
|
41
|
-
|
42
|
+
settlement_in_lieu: Optional[SettlementInLieu] = Field(None, alias="settlementInLieu")
|
43
|
+
__properties = ["settlementInstructionId", "transactionId", "settlementCategory", "instructionType", "instrumentIdentifiers", "contractualSettlementDate", "actualSettlementDate", "units", "subHoldingKeyOverrides", "custodianAccountOverride", "instructionToPortfolioRate", "settlementInLieu"]
|
42
44
|
|
43
45
|
class Config:
|
44
46
|
"""Pydantic configuration"""
|
@@ -82,6 +84,9 @@ class SettlementInstructionRequest(BaseModel):
|
|
82
84
|
# override the default output from pydantic by calling `to_dict()` of custodian_account_override
|
83
85
|
if self.custodian_account_override:
|
84
86
|
_dict['custodianAccountOverride'] = self.custodian_account_override.to_dict()
|
87
|
+
# override the default output from pydantic by calling `to_dict()` of settlement_in_lieu
|
88
|
+
if self.settlement_in_lieu:
|
89
|
+
_dict['settlementInLieu'] = self.settlement_in_lieu.to_dict()
|
85
90
|
# set to None if instruction_type (nullable) is None
|
86
91
|
# and __fields_set__ contains the field
|
87
92
|
if self.instruction_type is None and "instruction_type" in self.__fields_set__:
|
@@ -129,6 +134,7 @@ class SettlementInstructionRequest(BaseModel):
|
|
129
134
|
if obj.get("subHoldingKeyOverrides") is not None
|
130
135
|
else None,
|
131
136
|
"custodian_account_override": ResourceId.from_dict(obj.get("custodianAccountOverride")) if obj.get("custodianAccountOverride") is not None else None,
|
132
|
-
"instruction_to_portfolio_rate": obj.get("instructionToPortfolioRate")
|
137
|
+
"instruction_to_portfolio_rate": obj.get("instructionToPortfolioRate"),
|
138
|
+
"settlement_in_lieu": SettlementInLieu.from_dict(obj.get("settlementInLieu")) if obj.get("settlementInLieu") is not None else None
|
133
139
|
})
|
134
140
|
return _obj
|
@@ -22,6 +22,7 @@ from typing import Any, Dict, Optional, Union
|
|
22
22
|
from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, constr
|
23
23
|
from lusid.models.perpetual_property import PerpetualProperty
|
24
24
|
from lusid.models.resource_id import ResourceId
|
25
|
+
from lusid.models.settlement_in_lieu import SettlementInLieu
|
25
26
|
|
26
27
|
class TransactionSettlementInstruction(BaseModel):
|
27
28
|
"""
|
@@ -40,7 +41,8 @@ class TransactionSettlementInstruction(BaseModel):
|
|
40
41
|
instrument_identifiers: Dict[str, StrictStr] = Field(..., alias="instrumentIdentifiers", description="A set of instrument identifiers that can resolve the settlement instruction to a unique instrument.")
|
41
42
|
status: Optional[StrictStr] = Field(None,alias="status", description="The status of the settlement instruction - 'Invalid', 'Rejected' 'Applied' or 'Orphan'.")
|
42
43
|
instruction_to_portfolio_rate: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="instructionToPortfolioRate", description="The exchange rate between the Settlement Instruction and Portfolio.")
|
43
|
-
|
44
|
+
settlement_in_lieu: Optional[SettlementInLieu] = Field(None, alias="settlementInLieu")
|
45
|
+
__properties = ["settlementInstructionId", "instructionType", "actualSettlementDate", "units", "transactionId", "settlementCategory", "lusidInstrumentId", "contractualSettlementDate", "subHoldingKeyOverrides", "custodianAccountOverride", "instrumentIdentifiers", "status", "instructionToPortfolioRate", "settlementInLieu"]
|
44
46
|
|
45
47
|
class Config:
|
46
48
|
"""Pydantic configuration"""
|
@@ -84,6 +86,9 @@ class TransactionSettlementInstruction(BaseModel):
|
|
84
86
|
# override the default output from pydantic by calling `to_dict()` of custodian_account_override
|
85
87
|
if self.custodian_account_override:
|
86
88
|
_dict['custodianAccountOverride'] = self.custodian_account_override.to_dict()
|
89
|
+
# override the default output from pydantic by calling `to_dict()` of settlement_in_lieu
|
90
|
+
if self.settlement_in_lieu:
|
91
|
+
_dict['settlementInLieu'] = self.settlement_in_lieu.to_dict()
|
87
92
|
# set to None if contractual_settlement_date (nullable) is None
|
88
93
|
# and __fields_set__ contains the field
|
89
94
|
if self.contractual_settlement_date is None and "contractual_settlement_date" in self.__fields_set__:
|
@@ -133,6 +138,7 @@ class TransactionSettlementInstruction(BaseModel):
|
|
133
138
|
"custodian_account_override": ResourceId.from_dict(obj.get("custodianAccountOverride")) if obj.get("custodianAccountOverride") is not None else None,
|
134
139
|
"instrument_identifiers": obj.get("instrumentIdentifiers"),
|
135
140
|
"status": obj.get("status"),
|
136
|
-
"instruction_to_portfolio_rate": obj.get("instructionToPortfolioRate")
|
141
|
+
"instruction_to_portfolio_rate": obj.get("instructionToPortfolioRate"),
|
142
|
+
"settlement_in_lieu": SettlementInLieu.from_dict(obj.get("settlementInLieu")) if obj.get("settlementInLieu") is not None else None
|
137
143
|
})
|
138
144
|
return _obj
|
@@ -19,7 +19,7 @@ import json
|
|
19
19
|
|
20
20
|
|
21
21
|
from typing import Any, Dict, Optional
|
22
|
-
from pydantic.v1 import StrictStr, Field, BaseModel, Field
|
22
|
+
from pydantic.v1 import StrictStr, Field, BaseModel, Field
|
23
23
|
from lusid.models.date_or_diary_entry import DateOrDiaryEntry
|
24
24
|
|
25
25
|
class ValuationPointDataQueryParameters(BaseModel):
|
@@ -28,8 +28,7 @@ class ValuationPointDataQueryParameters(BaseModel):
|
|
28
28
|
"""
|
29
29
|
start: Optional[DateOrDiaryEntry] = None
|
30
30
|
end: DateOrDiaryEntry = Field(...)
|
31
|
-
|
32
|
-
__properties = ["start", "end", "excludeCleardownModule"]
|
31
|
+
__properties = ["start", "end"]
|
33
32
|
|
34
33
|
class Config:
|
35
34
|
"""Pydantic configuration"""
|
@@ -82,7 +81,6 @@ class ValuationPointDataQueryParameters(BaseModel):
|
|
82
81
|
|
83
82
|
_obj = ValuationPointDataQueryParameters.parse_obj({
|
84
83
|
"start": DateOrDiaryEntry.from_dict(obj.get("start")) if obj.get("start") is not None else None,
|
85
|
-
"end": DateOrDiaryEntry.from_dict(obj.get("end")) if obj.get("end") is not None else None
|
86
|
-
"exclude_cleardown_module": obj.get("excludeCleardownModule")
|
84
|
+
"end": DateOrDiaryEntry.from_dict(obj.get("end")) if obj.get("end") is not None else None
|
87
85
|
})
|
88
86
|
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.964
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -1735,6 +1735,7 @@ Class | Method | HTTP request | Description
|
|
1735
1735
|
- [SetTransactionConfigurationSourceRequest](docs/SetTransactionConfigurationSourceRequest.md)
|
1736
1736
|
- [SettlementConfigurationCategory](docs/SettlementConfigurationCategory.md)
|
1737
1737
|
- [SettlementCycle](docs/SettlementCycle.md)
|
1738
|
+
- [SettlementInLieu](docs/SettlementInLieu.md)
|
1738
1739
|
- [SettlementInstructionQuery](docs/SettlementInstructionQuery.md)
|
1739
1740
|
- [SettlementInstructionRequest](docs/SettlementInstructionRequest.md)
|
1740
1741
|
- [SettlementInstructionWithTransaction](docs/SettlementInstructionWithTransaction.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=RnwqbOstP7mUVZWcuTD38LxoVYadMQQCWAUbTqOgPoY,147249
|
2
2
|
lusid/api/__init__.py,sha256=yCGwgeQBZ1RZovOUo7Jq24Txz4o6naRgnWAzQVGdHAk,6784
|
3
3
|
lusid/api/abor_api.py,sha256=EdyHrd5yRcz7MOffhFa1cgtcBaPuPJmbArHWIXv7tuQ,174322
|
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=
|
32
|
+
lusid/api/funds_api.py,sha256=Xl1Kyo9ijxkaKdipKdN2pPXYop6pyHpCijnDAtn8CiI,403694
|
33
33
|
lusid/api/group_reconciliations_api.py,sha256=aoGqJa8X-uS9rVr7xOJOdbeu8jYLqYM2DoHVH7UGTj0,162917
|
34
34
|
lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL9Dq4YH60MI,64305
|
35
35
|
lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
|
@@ -80,7 +80,7 @@ lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,
|
|
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=
|
83
|
+
lusid/configuration.py,sha256=cIhn_iM5kNwVa1VydvmkZGMov2KNpadctF73weldkk4,17980
|
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=
|
98
|
+
lusid/models/__init__.py,sha256=QE6gzhjhK3IRHznOdkNI2nqvb_D_3GTbbP5n37Ki_AQ,139433
|
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
|
@@ -513,14 +513,14 @@ lusid/models/flow_convention_name.py,sha256=rIjbJ8FrMvrtDNQLOotZmgg4W_4mt2Lyhyn8
|
|
513
513
|
lusid/models/flow_conventions.py,sha256=IqBB3z5dcy7suU7LXVoTV1i3J9fVT6cXjF3Pibf9cww,10737
|
514
514
|
lusid/models/forward_rate_agreement.py,sha256=2huB94ltI8O9UKnFXc2oAYz278FMwPnaFEH8l--E3Vg,10696
|
515
515
|
lusid/models/from_recipe.py,sha256=yUnu4kUNme_mFEHE9p-N6k-ETFBNxvmjsL8u2fKIHyk,2538
|
516
|
-
lusid/models/fund.py,sha256=
|
516
|
+
lusid/models/fund.py,sha256=0zTN6O-qTmQ_s3YBH05UxmP2gR4L4F10YGjChW-c0WQ,12392
|
517
517
|
lusid/models/fund_amount.py,sha256=xGFl9O7wn4GTCaMq_SxSkzzo_9Pw3scDIDm3835C64Q,2132
|
518
518
|
lusid/models/fund_calendar_entry.py,sha256=pWED37IFcazb8MjVm1dgk_NOcxLkTnrHola6U0Rh-V4,10163
|
519
519
|
lusid/models/fund_calendar_entry_type.py,sha256=Y2mYU3ztxhNOAzhIXxQMslHCHfdmcQCSEdtpsOQbHwI,778
|
520
520
|
lusid/models/fund_configuration.py,sha256=wC-L5FcOKsoep9C4in6LFrDigHKdB_q2Zno2L-wpVqo,9606
|
521
521
|
lusid/models/fund_configuration_properties.py,sha256=b-4hJF9TltJf3lmaSyDjeGUhjjhxbs_-kYZ0MpM8kgk,4620
|
522
522
|
lusid/models/fund_configuration_request.py,sha256=ALjjBed5PSP9vPaJzGPeXmsm0LzfmiBmjZNGu5eWJ7Y,7208
|
523
|
-
lusid/models/fund_definition_request.py,sha256=
|
523
|
+
lusid/models/fund_definition_request.py,sha256=S0XGgZH7TFrUYA76vUucrW5aneCU8sS-rQT_0y3VczY,10212
|
524
524
|
lusid/models/fund_details.py,sha256=LCOrrTtyRtdxIfKxIuhf7a_qW5iNfQ_-5NJdMr7sZBw,2427
|
525
525
|
lusid/models/fund_id_list.py,sha256=D_idTEzdmYc5gDVHSI-K5aY7o1ZKSees358NO4g1h1w,6944
|
526
526
|
lusid/models/fund_journal_entry_line.py,sha256=Yu0mYBv6HCxtmvnncJ_MQJ5rQzyuQwKisgzonhpbY4o,16242
|
@@ -797,7 +797,7 @@ lusid/models/order_rule_breach.py,sha256=FFEoFnUVuL-fcVjfokHKvMDOaSa--of5qN7wYj0
|
|
797
797
|
lusid/models/order_set_request.py,sha256=b7FHKZWawLGR83gRHpShjtdYxvlvyMdLhQGLi2HTjmQ,2948
|
798
798
|
lusid/models/order_update_request.py,sha256=LR395KPc3mHyt8SFs5EfIJ5Wv0MylARVftpL7QL4CAk,6167
|
799
799
|
lusid/models/otc_confirmation.py,sha256=05mvXvcPLgyCNIHXN7g9L5nqAZORKrQA_wHW-fHe2O0,2651
|
800
|
-
lusid/models/output_transaction.py,sha256=
|
800
|
+
lusid/models/output_transaction.py,sha256=pUmrL4DrL_I3atZs-wpOVANQURmwup-WcJPthax148o,23390
|
801
801
|
lusid/models/output_transition.py,sha256=R_EGRE5yzpcgTth20s58MA5a3QVRA7ZvNtkxfAKtNCU,4219
|
802
802
|
lusid/models/package.py,sha256=1HFvrxivEXou71xi2lRT8x6ZsQ2zw1IdrIcu738okvU,6250
|
803
803
|
lusid/models/package_request.py,sha256=4sYvxIYutClYd8qLoZxZW96XMZn5jeyhcfpsvyXZfek,4615
|
@@ -1137,8 +1137,9 @@ lusid/models/set_transaction_configuration_alias.py,sha256=HXqUSsfc9BpUxDqQsWuCu
|
|
1137
1137
|
lusid/models/set_transaction_configuration_source_request.py,sha256=onioX-Oi4zG91Cs0weO0oqRpdiD-BQgHLzYRlEmmr0I,4458
|
1138
1138
|
lusid/models/settlement_configuration_category.py,sha256=s0El9li3Eu9144-UPcMbSgWWVlfVBb82323mjDq4_r8,3850
|
1139
1139
|
lusid/models/settlement_cycle.py,sha256=0L4GedRTJ9kTTmIzwGo9EeMhQwbuPG8TfgMHpCVBAtk,2746
|
1140
|
+
lusid/models/settlement_in_lieu.py,sha256=mHsktid77ohb6bFmZs3KTw-Y_wdDqCyzKecXbWu56YY,2537
|
1140
1141
|
lusid/models/settlement_instruction_query.py,sha256=GytEixNGDlOnrQQTSNEABN-9gFhKbaN_175zDxiaqcA,5094
|
1141
|
-
lusid/models/settlement_instruction_request.py,sha256=
|
1142
|
+
lusid/models/settlement_instruction_request.py,sha256=pa5RoSBtzWeKJVFTo76Gz_QUTBdqwUH_DqA9Z6j2MUo,6847
|
1142
1143
|
lusid/models/settlement_instruction_with_transaction.py,sha256=EW6nji9o1Qbgrhu01ixKn9-MypVgmm9tGqMuAmpT87U,3348
|
1143
1144
|
lusid/models/settlement_schedule.py,sha256=QXjKoZyNHBjL0wM69Nw8O0iLBYyD8_S2aSyxYaStiiU,3910
|
1144
1145
|
lusid/models/share_class_amount.py,sha256=ZQTWOV3Wvq4MVOmeNN6orybodEcvhx6oqgn51ki6vOw,2561
|
@@ -1229,7 +1230,7 @@ lusid/models/transaction_roles.py,sha256=1r-BzcchffLl6p4lSUhRAUmsVdrl7Bvce2cCiwx
|
|
1229
1230
|
lusid/models/transaction_set_configuration_data.py,sha256=hgtBUJzYyJlOj11GTpTkY05Sqdcd4SdNY2gFhP3Zzis,4643
|
1230
1231
|
lusid/models/transaction_set_configuration_data_request.py,sha256=Nq8DEDlONeOEJ_XHqKAcKaOlRibqrjfh06xo-RNQdbs,4179
|
1231
1232
|
lusid/models/transaction_settlement_bucket.py,sha256=dumOzhkFA3xI_KvKoGhXwAeP9qiEy_byo3Gxz3XPsdg,7141
|
1232
|
-
lusid/models/transaction_settlement_instruction.py,sha256=
|
1233
|
+
lusid/models/transaction_settlement_instruction.py,sha256=woiBJv7WnDtZ8qn1KrEIUzaKMya-DOkE1V0yECFRbMc,8480
|
1233
1234
|
lusid/models/transaction_settlement_movement.py,sha256=gJ0hGansWYlriQhQnltje8AEEzXGCzxTCUD9Z0SiQFY,4374
|
1234
1235
|
lusid/models/transaction_settlement_status.py,sha256=19MqHfQjVhuKw7aMMbWh6LlZ-dpTHYHbvMieZRmmGV0,5437
|
1235
1236
|
lusid/models/transaction_status.py,sha256=8b1pF1I7A3PzeZmStCXvnhqcDsPSlo8fQnnNQFYGZlA,812
|
@@ -1346,7 +1347,7 @@ lusid/models/upsert_transaction_properties_response.py,sha256=XMBpG2NV_LFjr31sdH
|
|
1346
1347
|
lusid/models/upsert_translation_script_request.py,sha256=w1WmfnRWTkC3urdWk_hy8rzvfM7kpgmqckBFyZZQIKM,2621
|
1347
1348
|
lusid/models/upsert_valuation_point_request.py,sha256=oJGTzA2s3WVelcMYXvHQuqrFc9NitQC_9FqA9c17t5M,4594
|
1348
1349
|
lusid/models/user.py,sha256=w0Ci15MQI00_eoPaUiWnHnPDzDThuAAR3g4UvlsHt9I,2273
|
1349
|
-
lusid/models/valuation_point_data_query_parameters.py,sha256=
|
1350
|
+
lusid/models/valuation_point_data_query_parameters.py,sha256=y3zPKw_ygbFGIhxv9Og3xcw-zRU2IF1Koc2SoS4ci4s,2826
|
1350
1351
|
lusid/models/valuation_point_data_request.py,sha256=3haNAxaWwqsd_AhNuf5rxuPC4ehEd9LZiH2TgOG59NI,2274
|
1351
1352
|
lusid/models/valuation_point_data_response.py,sha256=b1YVkLsk4Jr1HgjYMwlqvovYgu6supAdRolHKwWwUo4,6759
|
1352
1353
|
lusid/models/valuation_point_overview.py,sha256=91p71fdjFacSMBc3hpd0f9oWtvjuMfmG7Z3IsPhLPHg,5952
|
@@ -1392,6 +1393,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
|
|
1392
1393
|
lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
|
1393
1394
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1394
1395
|
lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
|
1395
|
-
lusid_sdk-2.1.
|
1396
|
-
lusid_sdk-2.1.
|
1397
|
-
lusid_sdk-2.1.
|
1396
|
+
lusid_sdk-2.1.964.dist-info/METADATA,sha256=LIM4wk1vXvJV7g9HVjNNeoPnHl8CcgljAo2HcYByhyo,234120
|
1397
|
+
lusid_sdk-2.1.964.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
1398
|
+
lusid_sdk-2.1.964.dist-info/RECORD,,
|
File without changes
|