lusid-sdk 2.1.242__py3-none-any.whl → 2.1.261__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.

Files changed (63) hide show
  1. lusid/__init__.py +28 -0
  2. lusid/api/__init__.py +2 -0
  3. lusid/api/entities_api.py +360 -0
  4. lusid/api/fee_types_api.py +143 -0
  5. lusid/api/fund_configurations_api.py +944 -0
  6. lusid/api/order_management_api.py +320 -1
  7. lusid/configuration.py +1 -1
  8. lusid/models/__init__.py +26 -0
  9. lusid/models/accounting_method.py +3 -0
  10. lusid/models/accumulation_event.py +3 -3
  11. lusid/models/amortisation_event.py +3 -3
  12. lusid/models/bond_coupon_event.py +3 -3
  13. lusid/models/bond_default_event.py +3 -3
  14. lusid/models/bond_principal_event.py +3 -3
  15. lusid/models/cancel_placements_response.py +153 -0
  16. lusid/models/cancelled_placement_result.py +83 -0
  17. lusid/models/capital_distribution_event.py +3 -3
  18. lusid/models/cash_dividend_event.py +3 -3
  19. lusid/models/cash_flow_event.py +3 -3
  20. lusid/models/close_event.py +3 -3
  21. lusid/models/component_rule.py +83 -0
  22. lusid/models/create_derived_transaction_portfolio_request.py +3 -3
  23. lusid/models/create_transaction_portfolio_request.py +3 -3
  24. lusid/models/dependency_source_filter.py +9 -2
  25. lusid/models/dividend_option_event.py +3 -3
  26. lusid/models/dividend_reinvestment_event.py +3 -3
  27. lusid/models/exercise_event.py +3 -3
  28. lusid/models/expiry_event.py +3 -3
  29. lusid/models/fee_transaction_template_specification.py +79 -0
  30. lusid/models/fund_configuration.py +150 -0
  31. lusid/models/fund_configuration_properties.py +115 -0
  32. lusid/models/fund_configuration_request.py +130 -0
  33. lusid/models/future_expiry_event.py +100 -0
  34. lusid/models/fx_forward_settlement_event.py +3 -3
  35. lusid/models/informational_error_event.py +3 -3
  36. lusid/models/informational_event.py +3 -3
  37. lusid/models/instrument_entity.py +146 -0
  38. lusid/models/instrument_event.py +6 -5
  39. lusid/models/instrument_event_type.py +1 -0
  40. lusid/models/maturity_event.py +3 -3
  41. lusid/models/merger_event.py +3 -3
  42. lusid/models/open_event.py +3 -3
  43. lusid/models/paged_resource_list_of_fund_configuration.py +113 -0
  44. lusid/models/placement_update_request.py +116 -0
  45. lusid/models/portfolio.py +3 -3
  46. lusid/models/portfolio_details.py +3 -3
  47. lusid/models/portfolio_without_href.py +3 -3
  48. lusid/models/property_definition.py +7 -1
  49. lusid/models/property_definition_entity.py +146 -0
  50. lusid/models/raw_vendor_event.py +3 -3
  51. lusid/models/reset_event.py +3 -3
  52. lusid/models/reverse_stock_split_event.py +3 -3
  53. lusid/models/scrip_dividend_event.py +3 -3
  54. lusid/models/spin_off_event.py +3 -3
  55. lusid/models/stock_dividend_event.py +3 -3
  56. lusid/models/stock_split_event.py +3 -3
  57. lusid/models/transaction_field_map.py +7 -2
  58. lusid/models/transition_event.py +3 -3
  59. lusid/models/trigger_event.py +3 -3
  60. lusid/models/update_placements_response.py +153 -0
  61. {lusid_sdk-2.1.242.dist-info → lusid_sdk-2.1.261.dist-info}/METADATA +26 -3
  62. {lusid_sdk-2.1.242.dist-info → lusid_sdk-2.1.261.dist-info}/RECORD +63 -49
  63. {lusid_sdk-2.1.242.dist-info → lusid_sdk-2.1.261.dist-info}/WHEEL +0 -0
@@ -0,0 +1,153 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ LUSID API
5
+
6
+ FINBOURNE Technology # noqa: E501
7
+
8
+ Contact: info@finbourne.com
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+
21
+ from typing import Any, Dict, List, Optional
22
+ from pydantic.v1 import BaseModel, Field, StrictStr, conlist
23
+ from lusid.models.error_detail import ErrorDetail
24
+ from lusid.models.link import Link
25
+ from lusid.models.placement import Placement
26
+ from lusid.models.response_meta_data import ResponseMetaData
27
+
28
+ class UpdatePlacementsResponse(BaseModel):
29
+ """
30
+ UpdatePlacementsResponse
31
+ """
32
+ href: Optional[StrictStr] = Field(None, description="The specific Uniform Resource Identifier (URI) for this resource at the requested effective and asAt datetime.")
33
+ values: Optional[Dict[str, Placement]] = Field(None, description="The placements which have been successfully updated.")
34
+ failed: Optional[Dict[str, ErrorDetail]] = Field(None, description="The placements that could not be updated, along with a reason for their failure.")
35
+ metadata: Optional[Dict[str, conlist(ResponseMetaData)]] = Field(None, description="Meta data associated with the update event.")
36
+ links: Optional[conlist(Link)] = None
37
+ __properties = ["href", "values", "failed", "metadata", "links"]
38
+
39
+ class Config:
40
+ """Pydantic configuration"""
41
+ allow_population_by_field_name = True
42
+ validate_assignment = True
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.dict(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> UpdatePlacementsResponse:
54
+ """Create an instance of UpdatePlacementsResponse from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self):
58
+ """Returns the dictionary representation of the model using alias"""
59
+ _dict = self.dict(by_alias=True,
60
+ exclude={
61
+ },
62
+ exclude_none=True)
63
+ # override the default output from pydantic by calling `to_dict()` of each value in values (dict)
64
+ _field_dict = {}
65
+ if self.values:
66
+ for _key in self.values:
67
+ if self.values[_key]:
68
+ _field_dict[_key] = self.values[_key].to_dict()
69
+ _dict['values'] = _field_dict
70
+ # override the default output from pydantic by calling `to_dict()` of each value in failed (dict)
71
+ _field_dict = {}
72
+ if self.failed:
73
+ for _key in self.failed:
74
+ if self.failed[_key]:
75
+ _field_dict[_key] = self.failed[_key].to_dict()
76
+ _dict['failed'] = _field_dict
77
+ # override the default output from pydantic by calling `to_dict()` of each value in metadata (dict of array)
78
+ _field_dict_of_array = {}
79
+ if self.metadata:
80
+ for _key in self.metadata:
81
+ if self.metadata[_key]:
82
+ _field_dict_of_array[_key] = [
83
+ _item.to_dict() for _item in self.metadata[_key]
84
+ ]
85
+ _dict['metadata'] = _field_dict_of_array
86
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
87
+ _items = []
88
+ if self.links:
89
+ for _item in self.links:
90
+ if _item:
91
+ _items.append(_item.to_dict())
92
+ _dict['links'] = _items
93
+ # set to None if href (nullable) is None
94
+ # and __fields_set__ contains the field
95
+ if self.href is None and "href" in self.__fields_set__:
96
+ _dict['href'] = None
97
+
98
+ # set to None if values (nullable) is None
99
+ # and __fields_set__ contains the field
100
+ if self.values is None and "values" in self.__fields_set__:
101
+ _dict['values'] = None
102
+
103
+ # set to None if failed (nullable) is None
104
+ # and __fields_set__ contains the field
105
+ if self.failed is None and "failed" in self.__fields_set__:
106
+ _dict['failed'] = None
107
+
108
+ # set to None if metadata (nullable) is None
109
+ # and __fields_set__ contains the field
110
+ if self.metadata is None and "metadata" in self.__fields_set__:
111
+ _dict['metadata'] = None
112
+
113
+ # set to None if links (nullable) is None
114
+ # and __fields_set__ contains the field
115
+ if self.links is None and "links" in self.__fields_set__:
116
+ _dict['links'] = None
117
+
118
+ return _dict
119
+
120
+ @classmethod
121
+ def from_dict(cls, obj: dict) -> UpdatePlacementsResponse:
122
+ """Create an instance of UpdatePlacementsResponse from a dict"""
123
+ if obj is None:
124
+ return None
125
+
126
+ if not isinstance(obj, dict):
127
+ return UpdatePlacementsResponse.parse_obj(obj)
128
+
129
+ _obj = UpdatePlacementsResponse.parse_obj({
130
+ "href": obj.get("href"),
131
+ "values": dict(
132
+ (_k, Placement.from_dict(_v))
133
+ for _k, _v in obj.get("values").items()
134
+ )
135
+ if obj.get("values") is not None
136
+ else None,
137
+ "failed": dict(
138
+ (_k, ErrorDetail.from_dict(_v))
139
+ for _k, _v in obj.get("failed").items()
140
+ )
141
+ if obj.get("failed") is not None
142
+ else None,
143
+ "metadata": dict(
144
+ (_k,
145
+ [ResponseMetaData.from_dict(_item) for _item in _v]
146
+ if _v is not None
147
+ else None
148
+ )
149
+ for _k, _v in obj.get("metadata").items()
150
+ ),
151
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
152
+ })
153
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.242
3
+ Version: 2.1.261
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.6675
33
- - Package version: 2.1.242
32
+ - API version: 0.11.6694
33
+ - Package version: 2.1.261
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
 
@@ -394,17 +394,25 @@ Class | Method | HTTP request | Description
394
394
  *DataTypesApi* | [**update_reference_values**](docs/DataTypesApi.md#update_reference_values) | **PUT** /api/datatypes/{scope}/{code}/referencedatavalues | [EARLY ACCESS] UpdateReferenceValues: Update reference data on a data type
395
395
  *DerivedTransactionPortfoliosApi* | [**create_derived_portfolio**](docs/DerivedTransactionPortfoliosApi.md#create_derived_portfolio) | **POST** /api/derivedtransactionportfolios/{scope} | CreateDerivedPortfolio: Create derived portfolio
396
396
  *DerivedTransactionPortfoliosApi* | [**delete_derived_portfolio_details**](docs/DerivedTransactionPortfoliosApi.md#delete_derived_portfolio_details) | **DELETE** /api/derivedtransactionportfolios/{scope}/{code}/details | [EARLY ACCESS] DeleteDerivedPortfolioDetails: Delete derived portfolio details
397
+ *EntitiesApi* | [**get_instrument_by_entity_unique_id**](docs/EntitiesApi.md#get_instrument_by_entity_unique_id) | **GET** /api/entities/instruments/{entityUniqueId} | [EXPERIMENTAL] GetInstrumentByEntityUniqueId: Get instrument by EntityUniqueId
397
398
  *EntitiesApi* | [**get_portfolio_by_entity_unique_id**](docs/EntitiesApi.md#get_portfolio_by_entity_unique_id) | **GET** /api/entities/portfolios/{entityUniqueId} | [EXPERIMENTAL] GetPortfolioByEntityUniqueId: Get portfolio by EntityUniqueId
398
399
  *EntitiesApi* | [**get_portfolio_changes**](docs/EntitiesApi.md#get_portfolio_changes) | **GET** /api/entities/changes/portfolios | GetPortfolioChanges: Get the next change to each portfolio in a scope.
400
+ *EntitiesApi* | [**get_property_definition_by_entity_unique_id**](docs/EntitiesApi.md#get_property_definition_by_entity_unique_id) | **GET** /api/entities/propertydefinitions/{entityUniqueId} | [EXPERIMENTAL] GetPropertyDefinitionByEntityUniqueId: Get property definition by EntityUniqueId
399
401
  *ExecutionsApi* | [**delete_execution**](docs/ExecutionsApi.md#delete_execution) | **DELETE** /api/executions/{scope}/{code} | [EARLY ACCESS] DeleteExecution: Delete execution
400
402
  *ExecutionsApi* | [**get_execution**](docs/ExecutionsApi.md#get_execution) | **GET** /api/executions/{scope}/{code} | [EARLY ACCESS] GetExecution: Get Execution
401
403
  *ExecutionsApi* | [**list_executions**](docs/ExecutionsApi.md#list_executions) | **GET** /api/executions | ListExecutions: List Executions
402
404
  *ExecutionsApi* | [**upsert_executions**](docs/ExecutionsApi.md#upsert_executions) | **POST** /api/executions | UpsertExecutions: Upsert Execution
403
405
  *FeeTypesApi* | [**create_fee_type**](docs/FeeTypesApi.md#create_fee_type) | **POST** /api/feetypes/{scope} | [EXPERIMENTAL] CreateFeeType: Create a FeeType.
404
406
  *FeeTypesApi* | [**delete_fee_type**](docs/FeeTypesApi.md#delete_fee_type) | **DELETE** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] DeleteFeeType: Delete a FeeType.
407
+ *FeeTypesApi* | [**get_fee_template_specifications**](docs/FeeTypesApi.md#get_fee_template_specifications) | **GET** /api/feetypes/feetransactiontemplatespecification | [EXPERIMENTAL] GetFeeTemplateSpecifications: Get FeeTemplateSpecifications used in the FeeType.
405
408
  *FeeTypesApi* | [**get_fee_type**](docs/FeeTypesApi.md#get_fee_type) | **GET** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] GetFeeType: Get a FeeType
406
409
  *FeeTypesApi* | [**list_fee_types**](docs/FeeTypesApi.md#list_fee_types) | **GET** /api/feetypes | [EXPERIMENTAL] ListFeeTypes: List FeeTypes
407
410
  *FeeTypesApi* | [**update_fee_type**](docs/FeeTypesApi.md#update_fee_type) | **PUT** /api/feetypes/{scope}/{code} | [EXPERIMENTAL] UpdateFeeType: Update a FeeType.
411
+ *FundConfigurationsApi* | [**create_fund_configuration**](docs/FundConfigurationsApi.md#create_fund_configuration) | **POST** /api/fundconfigurations/{scope} | [EXPERIMENTAL] CreateFundConfiguration: Create a FundConfiguration.
412
+ *FundConfigurationsApi* | [**delete_fund_configuration**](docs/FundConfigurationsApi.md#delete_fund_configuration) | **DELETE** /api/fundconfigurations/{scope}/{code} | [EXPERIMENTAL] DeleteFundConfiguration: Delete a FundConfiguration.
413
+ *FundConfigurationsApi* | [**get_fund_configuration**](docs/FundConfigurationsApi.md#get_fund_configuration) | **GET** /api/fundconfigurations/{scope}/{code} | [EXPERIMENTAL] GetFundConfiguration: Get FundConfiguration.
414
+ *FundConfigurationsApi* | [**list_fund_configurations**](docs/FundConfigurationsApi.md#list_fund_configurations) | **GET** /api/fundconfigurations | [EXPERIMENTAL] ListFundConfigurations: List FundConfiguration.
415
+ *FundConfigurationsApi* | [**upsert_fund_configuration_properties**](docs/FundConfigurationsApi.md#upsert_fund_configuration_properties) | **POST** /api/fundconfigurations/{scope}/{code}/properties/$upsert | [EXPERIMENTAL] UpsertFundConfigurationProperties: Upsert FundConfiguration properties
408
416
  *FundsApi* | [**accept_estimate_valuation_point**](docs/FundsApi.md#accept_estimate_valuation_point) | **POST** /api/funds/{scope}/{code}/valuationpoints/$acceptestimate | [EXPERIMENTAL] AcceptEstimateValuationPoint: Accepts an Estimate Valuation Point.
409
417
  *FundsApi* | [**create_fee**](docs/FundsApi.md#create_fee) | **POST** /api/funds/{scope}/{code}/fees | [EXPERIMENTAL] CreateFee: Create a Fee.
410
418
  *FundsApi* | [**create_fund**](docs/FundsApi.md#create_fund) | **POST** /api/funds/{scope} | [EXPERIMENTAL] CreateFund: Create a Fund.
@@ -488,10 +496,12 @@ Class | Method | HTTP request | Description
488
496
  *OrderInstructionsApi* | [**list_order_instructions**](docs/OrderInstructionsApi.md#list_order_instructions) | **GET** /api/orderinstructions | [EXPERIMENTAL] ListOrderInstructions: List OrderInstructions
489
497
  *OrderInstructionsApi* | [**upsert_order_instructions**](docs/OrderInstructionsApi.md#upsert_order_instructions) | **POST** /api/orderinstructions | [EXPERIMENTAL] UpsertOrderInstructions: Upsert OrderInstruction
490
498
  *OrderManagementApi* | [**book_transactions**](docs/OrderManagementApi.md#book_transactions) | **POST** /api/ordermanagement/booktransactions | [EXPERIMENTAL] BookTransactions: Books transactions using specific allocations as a source.
499
+ *OrderManagementApi* | [**cancel_placements**](docs/OrderManagementApi.md#cancel_placements) | **POST** /api/ordermanagement/$cancelplacements | [EARLY ACCESS] CancelPlacements: Cancel existing placements
491
500
  *OrderManagementApi* | [**create_orders**](docs/OrderManagementApi.md#create_orders) | **POST** /api/ordermanagement/createorders | [EARLY ACCESS] CreateOrders: Upsert a Block and associated orders
492
501
  *OrderManagementApi* | [**move_orders**](docs/OrderManagementApi.md#move_orders) | **POST** /api/ordermanagement/moveorders | [EARLY ACCESS] MoveOrders: Move orders to new or existing block
493
502
  *OrderManagementApi* | [**place_blocks**](docs/OrderManagementApi.md#place_blocks) | **POST** /api/ordermanagement/placeblocks | [EARLY ACCESS] PlaceBlocks: Places blocks for a given list of placement requests.
494
503
  *OrderManagementApi* | [**run_allocation_service**](docs/OrderManagementApi.md#run_allocation_service) | **POST** /api/ordermanagement/allocate | [EXPERIMENTAL] RunAllocationService: Runs the Allocation Service
504
+ *OrderManagementApi* | [**update_placements**](docs/OrderManagementApi.md#update_placements) | **POST** /api/ordermanagement/$updateplacements | [EARLY ACCESS] UpdatePlacements: Update existing placements
495
505
  *OrdersApi* | [**delete_order**](docs/OrdersApi.md#delete_order) | **DELETE** /api/orders/{scope}/{code} | [EARLY ACCESS] DeleteOrder: Delete order
496
506
  *OrdersApi* | [**get_order**](docs/OrdersApi.md#get_order) | **GET** /api/orders/{scope}/{code} | [EARLY ACCESS] GetOrder: Get Order
497
507
  *OrdersApi* | [**list_orders**](docs/OrdersApi.md#list_orders) | **GET** /api/orders | ListOrders: List Orders
@@ -840,6 +850,8 @@ Class | Method | HTTP request | Description
840
850
  - [Calendar](docs/Calendar.md)
841
851
  - [CalendarDate](docs/CalendarDate.md)
842
852
  - [CalendarDependency](docs/CalendarDependency.md)
853
+ - [CancelPlacementsResponse](docs/CancelPlacementsResponse.md)
854
+ - [CancelledPlacementResult](docs/CancelledPlacementResult.md)
843
855
  - [CapFloor](docs/CapFloor.md)
844
856
  - [CapitalDistributionEvent](docs/CapitalDistributionEvent.md)
845
857
  - [CashAndSecurityOfferElection](docs/CashAndSecurityOfferElection.md)
@@ -906,6 +918,7 @@ Class | Method | HTTP request | Description
906
918
  - [ComplianceTemplateVariation](docs/ComplianceTemplateVariation.md)
907
919
  - [ComplianceTemplateVariationDto](docs/ComplianceTemplateVariationDto.md)
908
920
  - [ComplianceTemplateVariationRequest](docs/ComplianceTemplateVariationRequest.md)
921
+ - [ComponentRule](docs/ComponentRule.md)
909
922
  - [ComponentTransaction](docs/ComponentTransaction.md)
910
923
  - [CompositeBreakdown](docs/CompositeBreakdown.md)
911
924
  - [CompositeBreakdownRequest](docs/CompositeBreakdownRequest.md)
@@ -1051,6 +1064,7 @@ Class | Method | HTTP request | Description
1051
1064
  - [FeeRule](docs/FeeRule.md)
1052
1065
  - [FeeRuleUpsertRequest](docs/FeeRuleUpsertRequest.md)
1053
1066
  - [FeeRuleUpsertResponse](docs/FeeRuleUpsertResponse.md)
1067
+ - [FeeTransactionTemplateSpecification](docs/FeeTransactionTemplateSpecification.md)
1054
1068
  - [FeeType](docs/FeeType.md)
1055
1069
  - [FeeTypeRequest](docs/FeeTypeRequest.md)
1056
1070
  - [FieldDefinition](docs/FieldDefinition.md)
@@ -1071,12 +1085,16 @@ Class | Method | HTTP request | Description
1071
1085
  - [ForwardRateAgreement](docs/ForwardRateAgreement.md)
1072
1086
  - [FromRecipe](docs/FromRecipe.md)
1073
1087
  - [Fund](docs/Fund.md)
1088
+ - [FundConfiguration](docs/FundConfiguration.md)
1089
+ - [FundConfigurationProperties](docs/FundConfigurationProperties.md)
1090
+ - [FundConfigurationRequest](docs/FundConfigurationRequest.md)
1074
1091
  - [FundProperties](docs/FundProperties.md)
1075
1092
  - [FundRequest](docs/FundRequest.md)
1076
1093
  - [FundShareClass](docs/FundShareClass.md)
1077
1094
  - [FundingLeg](docs/FundingLeg.md)
1078
1095
  - [FundingLegOptions](docs/FundingLegOptions.md)
1079
1096
  - [Future](docs/Future.md)
1097
+ - [FutureExpiryEvent](docs/FutureExpiryEvent.md)
1080
1098
  - [FuturesContractDetails](docs/FuturesContractDetails.md)
1081
1099
  - [FxConventions](docs/FxConventions.md)
1082
1100
  - [FxDependency](docs/FxDependency.md)
@@ -1151,6 +1169,7 @@ Class | Method | HTTP request | Description
1151
1169
  - [InstrumentDefinition](docs/InstrumentDefinition.md)
1152
1170
  - [InstrumentDefinitionFormat](docs/InstrumentDefinitionFormat.md)
1153
1171
  - [InstrumentDeleteModes](docs/InstrumentDeleteModes.md)
1172
+ - [InstrumentEntity](docs/InstrumentEntity.md)
1154
1173
  - [InstrumentEvent](docs/InstrumentEvent.md)
1155
1174
  - [InstrumentEventConfiguration](docs/InstrumentEventConfiguration.md)
1156
1175
  - [InstrumentEventHolder](docs/InstrumentEventHolder.md)
@@ -1300,6 +1319,7 @@ Class | Method | HTTP request | Description
1300
1319
  - [PagedResourceListOfFee](docs/PagedResourceListOfFee.md)
1301
1320
  - [PagedResourceListOfFeeType](docs/PagedResourceListOfFeeType.md)
1302
1321
  - [PagedResourceListOfFund](docs/PagedResourceListOfFund.md)
1322
+ - [PagedResourceListOfFundConfiguration](docs/PagedResourceListOfFundConfiguration.md)
1303
1323
  - [PagedResourceListOfGeneralLedgerProfileResponse](docs/PagedResourceListOfGeneralLedgerProfileResponse.md)
1304
1324
  - [PagedResourceListOfInstrument](docs/PagedResourceListOfInstrument.md)
1305
1325
  - [PagedResourceListOfInstrumentEventHolder](docs/PagedResourceListOfInstrumentEventHolder.md)
@@ -1347,6 +1367,7 @@ Class | Method | HTTP request | Description
1347
1367
  - [Placement](docs/Placement.md)
1348
1368
  - [PlacementRequest](docs/PlacementRequest.md)
1349
1369
  - [PlacementSetRequest](docs/PlacementSetRequest.md)
1370
+ - [PlacementUpdateRequest](docs/PlacementUpdateRequest.md)
1350
1371
  - [Portfolio](docs/Portfolio.md)
1351
1372
  - [PortfolioCashFlow](docs/PortfolioCashFlow.md)
1352
1373
  - [PortfolioCashLadder](docs/PortfolioCashLadder.md)
@@ -1383,6 +1404,7 @@ Class | Method | HTTP request | Description
1383
1404
  - [PricingOptions](docs/PricingOptions.md)
1384
1405
  - [ProcessedCommand](docs/ProcessedCommand.md)
1385
1406
  - [PropertyDefinition](docs/PropertyDefinition.md)
1407
+ - [PropertyDefinitionEntity](docs/PropertyDefinitionEntity.md)
1386
1408
  - [PropertyDefinitionSearchResult](docs/PropertyDefinitionSearchResult.md)
1387
1409
  - [PropertyDefinitionType](docs/PropertyDefinitionType.md)
1388
1410
  - [PropertyDomain](docs/PropertyDomain.md)
@@ -1662,6 +1684,7 @@ Class | Method | HTTP request | Description
1662
1684
  - [UpdateDerivedPropertyDefinitionRequest](docs/UpdateDerivedPropertyDefinitionRequest.md)
1663
1685
  - [UpdateFeeTypeRequest](docs/UpdateFeeTypeRequest.md)
1664
1686
  - [UpdateInstrumentIdentifierRequest](docs/UpdateInstrumentIdentifierRequest.md)
1687
+ - [UpdatePlacementsResponse](docs/UpdatePlacementsResponse.md)
1665
1688
  - [UpdatePortfolioGroupRequest](docs/UpdatePortfolioGroupRequest.md)
1666
1689
  - [UpdatePortfolioRequest](docs/UpdatePortfolioRequest.md)
1667
1690
  - [UpdatePropertyDefinitionRequest](docs/UpdatePropertyDefinitionRequest.md)