lusid-sdk 2.1.134__py3-none-any.whl → 2.1.136__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 +6 -0
- lusid/api/funds_api.py +1148 -198
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +6 -0
- lusid/models/fee.py +217 -0
- lusid/models/fee_request.py +163 -0
- lusid/models/paged_resource_list_of_fee.py +113 -0
- {lusid_sdk-2.1.134.dist-info → lusid_sdk-2.1.136.dist-info}/METADATA +11 -3
- {lusid_sdk-2.1.134.dist-info → lusid_sdk-2.1.136.dist-info}/RECORD +10 -7
- {lusid_sdk-2.1.134.dist-info → lusid_sdk-2.1.136.dist-info}/WHEEL +0 -0
lusid/__init__.py
CHANGED
|
@@ -384,7 +384,9 @@ from lusid.models.exercise_event import ExerciseEvent
|
|
|
384
384
|
from lusid.models.exotic_instrument import ExoticInstrument
|
|
385
385
|
from lusid.models.expanded_group import ExpandedGroup
|
|
386
386
|
from lusid.models.expiry_event import ExpiryEvent
|
|
387
|
+
from lusid.models.fee import Fee
|
|
387
388
|
from lusid.models.fee_accrual import FeeAccrual
|
|
389
|
+
from lusid.models.fee_request import FeeRequest
|
|
388
390
|
from lusid.models.fee_rule import FeeRule
|
|
389
391
|
from lusid.models.fee_rule_upsert_request import FeeRuleUpsertRequest
|
|
390
392
|
from lusid.models.fee_rule_upsert_response import FeeRuleUpsertResponse
|
|
@@ -631,6 +633,7 @@ from lusid.models.paged_resource_list_of_data_type_summary import PagedResourceL
|
|
|
631
633
|
from lusid.models.paged_resource_list_of_dialect_id import PagedResourceListOfDialectId
|
|
632
634
|
from lusid.models.paged_resource_list_of_diary_entry import PagedResourceListOfDiaryEntry
|
|
633
635
|
from lusid.models.paged_resource_list_of_execution import PagedResourceListOfExecution
|
|
636
|
+
from lusid.models.paged_resource_list_of_fee import PagedResourceListOfFee
|
|
634
637
|
from lusid.models.paged_resource_list_of_fee_type import PagedResourceListOfFeeType
|
|
635
638
|
from lusid.models.paged_resource_list_of_fund import PagedResourceListOfFund
|
|
636
639
|
from lusid.models.paged_resource_list_of_general_ledger_profile_response import PagedResourceListOfGeneralLedgerProfileResponse
|
|
@@ -1443,7 +1446,9 @@ __all__ = [
|
|
|
1443
1446
|
"ExoticInstrument",
|
|
1444
1447
|
"ExpandedGroup",
|
|
1445
1448
|
"ExpiryEvent",
|
|
1449
|
+
"Fee",
|
|
1446
1450
|
"FeeAccrual",
|
|
1451
|
+
"FeeRequest",
|
|
1447
1452
|
"FeeRule",
|
|
1448
1453
|
"FeeRuleUpsertRequest",
|
|
1449
1454
|
"FeeRuleUpsertResponse",
|
|
@@ -1690,6 +1695,7 @@ __all__ = [
|
|
|
1690
1695
|
"PagedResourceListOfDialectId",
|
|
1691
1696
|
"PagedResourceListOfDiaryEntry",
|
|
1692
1697
|
"PagedResourceListOfExecution",
|
|
1698
|
+
"PagedResourceListOfFee",
|
|
1693
1699
|
"PagedResourceListOfFeeType",
|
|
1694
1700
|
"PagedResourceListOfFund",
|
|
1695
1701
|
"PagedResourceListOfGeneralLedgerProfileResponse",
|