lusid-sdk 2.1.405__py3-none-any.whl → 2.1.537__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 +142 -8
- lusid/api/__init__.py +2 -2
- lusid/api/abor_api.py +126 -133
- lusid/api/abor_configuration_api.py +46 -45
- lusid/api/address_key_definition_api.py +28 -27
- lusid/api/aggregation_api.py +37 -36
- lusid/api/allocations_api.py +39 -38
- lusid/api/amortisation_rule_sets_api.py +55 -54
- lusid/api/application_metadata_api.py +28 -27
- lusid/api/blocks_api.py +37 -36
- lusid/api/calendars_api.py +469 -111
- lusid/api/chart_of_accounts_api.py +454 -279
- lusid/api/complex_market_data_api.py +37 -36
- lusid/api/compliance_api.py +136 -135
- lusid/api/configuration_recipe_api.py +100 -99
- lusid/api/conventions_api.py +109 -108
- lusid/api/corporate_action_sources_api.py +82 -81
- lusid/api/counterparties_api.py +73 -72
- lusid/api/custom_entities_api.py +102 -101
- lusid/api/custom_entity_definitions_api.py +37 -36
- lusid/api/custom_entity_types_api.py +37 -36
- lusid/api/cut_label_definitions_api.py +46 -45
- lusid/api/data_types_api.py +248 -72
- lusid/api/derived_transaction_portfolios_api.py +19 -18
- lusid/api/entities_api.py +431 -46
- lusid/api/executions_api.py +37 -36
- lusid/api/fee_types_api.py +55 -54
- lusid/api/{fund_configurations_api.py → fund_configuration_api.py} +222 -46
- lusid/api/funds_api.py +337 -162
- lusid/api/group_reconciliations_api.py +2182 -63
- lusid/api/instrument_event_types_api.py +64 -63
- lusid/api/instrument_events_api.py +46 -45
- lusid/api/instruments_api.py +374 -186
- lusid/api/legacy_compliance_api.py +73 -72
- lusid/api/legal_entities_api.py +167 -166
- lusid/api/order_graph_api.py +32 -31
- lusid/api/order_instructions_api.py +37 -36
- lusid/api/order_management_api.py +251 -90
- lusid/api/orders_api.py +37 -36
- lusid/api/packages_api.py +37 -36
- lusid/api/participations_api.py +37 -36
- lusid/api/persons_api.py +163 -162
- lusid/api/placements_api.py +37 -36
- lusid/api/portfolio_groups_api.py +235 -234
- lusid/api/portfolios_api.py +307 -309
- lusid/api/property_definitions_api.py +100 -99
- lusid/api/queryable_keys_api.py +10 -9
- lusid/api/quotes_api.py +82 -81
- lusid/api/reconciliations_api.py +136 -135
- lusid/api/reference_lists_api.py +39 -38
- lusid/api/reference_portfolio_api.py +213 -36
- lusid/api/relation_definitions_api.py +28 -27
- lusid/api/relations_api.py +19 -18
- lusid/api/relationship_definitions_api.py +46 -45
- lusid/api/relationships_api.py +19 -18
- lusid/api/schemas_api.py +37 -36
- lusid/api/scopes_api.py +19 -18
- lusid/api/scripted_translation_api.py +73 -72
- lusid/api/search_api.py +37 -36
- lusid/api/sequences_api.py +37 -36
- lusid/api/staged_modifications_api.py +37 -36
- lusid/api/staging_rule_set_api.py +46 -45
- lusid/api/structured_result_data_api.py +82 -81
- lusid/api/system_configuration_api.py +64 -63
- lusid/api/tax_rule_sets_api.py +46 -45
- lusid/api/transaction_configuration_api.py +100 -99
- lusid/api/transaction_fees_api.py +46 -45
- lusid/api/transaction_portfolios_api.py +771 -328
- lusid/api/translation_api.py +19 -18
- lusid/api/workspace_api.py +181 -180
- lusid/api_client.py +26 -17
- lusid/configuration.py +87 -2
- lusid/extensions/api_client.py +25 -17
- lusid/extensions/api_client_factory.py +14 -5
- lusid/extensions/api_configuration.py +50 -1
- lusid/extensions/configuration_loaders.py +39 -11
- lusid/extensions/configuration_options.py +67 -0
- lusid/extensions/rest.py +78 -26
- lusid/extensions/retry.py +109 -37
- lusid/models/__init__.py +140 -6
- lusid/models/access_metadata_value.py +1 -1
- lusid/models/accounting_method.py +7 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/address_key_list.py +3 -3
- lusid/models/amortisation_event.py +3 -3
- lusid/models/amount.py +69 -0
- lusid/models/applicable_instrument_event.py +7 -2
- lusid/models/asset_leg.py +1 -1
- lusid/models/basket.py +3 -3
- lusid/models/batch_update_user_review_for_comparison_result_request.py +81 -0
- lusid/models/batch_update_user_review_for_comparison_result_response.py +146 -0
- lusid/models/batch_upsert_dates_for_calendar_response.py +146 -0
- lusid/models/batch_upsert_portfolio_access_metadata_request.py +27 -17
- lusid/models/batch_upsert_portfolio_access_metadata_response.py +56 -16
- lusid/models/{metadata_key_value.py → batch_upsert_portfolio_access_metadata_response_item.py} +15 -9
- lusid/models/bond.py +3 -3
- lusid/models/bond_coupon_event.py +10 -5
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +10 -5
- lusid/models/bonus_issue_event.py +166 -0
- lusid/models/{component_rule.py → break_code_source.py} +17 -21
- lusid/models/call_on_intermediate_securities_event.py +139 -0
- lusid/models/cancel_order_and_move_remaining_result.py +84 -0
- lusid/models/cancel_orders_and_move_remaining_request.py +83 -0
- lusid/models/cancel_orders_and_move_remaining_response.py +153 -0
- lusid/models/cap_floor.py +3 -3
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/cash_perpetual.py +3 -3
- lusid/models/cds_credit_event.py +6 -6
- lusid/models/cds_index.py +3 -3
- lusid/models/cdx_credit_event.py +6 -6
- lusid/models/change_interval.py +123 -0
- lusid/models/change_interval_with_order_management_detail.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/comparison_attribute_value_pair.py +71 -0
- lusid/models/complex_bond.py +3 -3
- lusid/models/component_transaction.py +10 -3
- lusid/models/contract_for_difference.py +3 -3
- lusid/models/create_derived_transaction_portfolio_request.py +3 -3
- lusid/models/create_group_reconciliation_definition_request.py +113 -0
- lusid/models/create_staging_rule_set_request.py +1 -6
- lusid/models/create_transaction_portfolio_request.py +3 -3
- lusid/models/credit_default_swap.py +3 -3
- lusid/models/credit_premium_cash_flow_event.py +3 -3
- lusid/models/custodian_account_request.py +1 -1
- lusid/models/custom_entity_entity.py +146 -0
- lusid/models/custom_entity_response.py +7 -1
- lusid/models/decimal_list.py +3 -3
- lusid/models/delete_instrument_properties_response.py +7 -1
- lusid/models/delete_instrument_response.py +7 -1
- lusid/models/delete_instruments_response.py +22 -1
- lusid/models/deleted_entity_response.py +7 -1
- lusid/models/diary_entry_request.py +10 -1
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +9 -4
- lusid/models/effective_range.py +71 -0
- lusid/models/equity.py +3 -3
- lusid/models/equity_option.py +22 -7
- lusid/models/equity_swap.py +3 -3
- lusid/models/exchange_traded_option.py +3 -3
- lusid/models/exchange_traded_option_contract_details.py +1 -1
- lusid/models/exercise_event.py +3 -3
- lusid/models/exotic_instrument.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/fee.py +17 -10
- lusid/models/fee_request.py +20 -13
- lusid/models/fee_type.py +4 -4
- lusid/models/fee_type_request.py +3 -3
- lusid/models/fixed_leg.py +3 -3
- lusid/models/fixed_schedule.py +3 -3
- lusid/models/flexible_loan.py +3 -3
- lusid/models/float_schedule.py +4 -4
- lusid/models/floating_leg.py +3 -3
- lusid/models/flow_conventions.py +7 -1
- lusid/models/forward_rate_agreement.py +3 -3
- lusid/models/fund_configuration.py +44 -17
- lusid/models/fund_configuration_request.py +31 -19
- lusid/models/fund_id_list.py +99 -0
- lusid/models/fund_share_class.py +23 -8
- lusid/models/funding_leg.py +3 -3
- lusid/models/future.py +3 -3
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/fx_forward.py +3 -3
- lusid/models/fx_forward_settlement_event.py +3 -3
- lusid/models/fx_option.py +3 -3
- lusid/models/fx_swap.py +3 -3
- lusid/models/group_reconciliation_aggregate_attribute_rule.py +2 -2
- lusid/models/group_reconciliation_aggregate_attribute_values.py +86 -0
- lusid/models/group_reconciliation_aggregate_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_comparison_result.py +148 -0
- lusid/models/group_reconciliation_core_attribute_values.py +86 -0
- lusid/models/group_reconciliation_core_comparison_rule_operand.py +1 -1
- lusid/models/group_reconciliation_date_pair.py +81 -0
- lusid/models/group_reconciliation_dates.py +78 -0
- lusid/models/group_reconciliation_definition.py +136 -0
- lusid/models/group_reconciliation_definition_comparison_ruleset_ids.py +83 -0
- lusid/models/group_reconciliation_definition_currencies.py +71 -0
- lusid/models/group_reconciliation_definition_portfolio_entity_ids.py +86 -0
- lusid/models/group_reconciliation_definition_recipe_ids.py +78 -0
- lusid/models/group_reconciliation_instance_id.py +71 -0
- lusid/models/group_reconciliation_result_statuses.py +89 -0
- lusid/models/group_reconciliation_result_types.py +96 -0
- lusid/models/group_reconciliation_review_statuses.py +96 -0
- lusid/models/group_reconciliation_run_details.py +76 -0
- lusid/models/group_reconciliation_run_request.py +75 -0
- lusid/models/{metadata_key_value_response.py → group_reconciliation_run_response.py} +20 -29
- lusid/models/group_reconciliation_summary.py +121 -0
- lusid/models/group_reconciliation_user_review.py +112 -0
- lusid/models/group_reconciliation_user_review_add.py +88 -0
- lusid/models/group_reconciliation_user_review_break_code.py +80 -0
- lusid/models/group_reconciliation_user_review_comment.py +80 -0
- lusid/models/group_reconciliation_user_review_match_key.py +80 -0
- lusid/models/group_reconciliation_user_review_remove.py +88 -0
- lusid/models/holding_contributor.py +11 -4
- lusid/models/holding_ids_request.py +69 -0
- lusid/models/inflation_leg.py +3 -3
- lusid/models/inflation_linked_bond.py +3 -3
- lusid/models/inflation_swap.py +3 -3
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument.py +7 -1
- lusid/models/instrument_definition.py +8 -2
- lusid/models/instrument_event.py +17 -5
- lusid/models/instrument_event_holder.py +9 -1
- lusid/models/instrument_event_type.py +12 -0
- lusid/models/instrument_leg.py +3 -3
- lusid/models/instrument_list.py +3 -3
- lusid/models/instrument_type.py +2 -0
- lusid/models/interest_rate_swap.py +3 -3
- lusid/models/interest_rate_swaption.py +3 -3
- lusid/models/intermediate_securities_distribution_event.py +140 -0
- lusid/models/lapse_election.py +73 -0
- lusid/models/loan_facility.py +97 -0
- lusid/models/lusid_instrument.py +7 -5
- lusid/models/market_data_key_rule.py +5 -3
- lusid/models/market_data_specific_rule.py +5 -3
- lusid/models/mastered_instrument.py +139 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/mbs_coupon_event.py +102 -0
- lusid/models/mbs_interest_deferral_event.py +102 -0
- lusid/models/mbs_interest_shortfall_event.py +102 -0
- lusid/models/mbs_principal_event.py +102 -0
- lusid/models/mbs_principal_write_off_event.py +102 -0
- lusid/models/merger_event.py +22 -22
- lusid/models/new_instrument.py +1 -1
- lusid/models/open_event.py +3 -3
- lusid/models/option_exercise_cash_event.py +144 -0
- lusid/models/option_exercise_election.py +73 -0
- lusid/models/option_exercise_physical_event.py +149 -0
- lusid/models/output_transaction.py +9 -2
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_result.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_comparison_ruleset.py +113 -0
- lusid/models/paged_resource_list_of_group_reconciliation_definition.py +113 -0
- lusid/models/portfolio.py +3 -3
- lusid/models/portfolio_details.py +3 -3
- lusid/models/portfolio_group_id_list.py +3 -3
- lusid/models/portfolio_id_list.py +3 -3
- lusid/models/portfolio_without_href.py +3 -3
- lusid/models/pricing_options.py +8 -2
- lusid/models/property_list.py +3 -3
- lusid/models/protection_payout_cash_flow_event.py +102 -0
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reference_instrument.py +3 -3
- lusid/models/reference_list.py +6 -5
- lusid/models/reference_list_type.py +1 -0
- lusid/models/repo.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/resource_list_of_change_interval.py +113 -0
- lusid/models/resource_list_of_output_transaction.py +113 -0
- lusid/models/return_zero_pv_options.py +69 -0
- lusid/models/reverse_stock_split_event.py +21 -7
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/settlement_cycle.py +79 -0
- lusid/models/share_class_dealing_breakdown.py +3 -2
- lusid/models/share_class_details.py +18 -1
- lusid/models/simple_cash_flow_loan.py +3 -3
- lusid/models/simple_instrument.py +3 -3
- lusid/models/simple_rounding_convention.py +76 -0
- lusid/models/spin_off_event.py +3 -3
- lusid/models/staged_modification_effective_range.py +2 -2
- lusid/models/stock_dividend_event.py +20 -6
- lusid/models/stock_split_event.py +3 -3
- lusid/models/string_list.py +3 -3
- lusid/models/swap_cash_flow_event.py +3 -3
- lusid/models/swap_principal_event.py +3 -3
- lusid/models/target_tax_lot.py +23 -2
- lusid/models/target_tax_lot_request.py +23 -2
- lusid/models/tender_event.py +172 -0
- lusid/models/term_deposit.py +3 -3
- lusid/models/total_return_swap.py +4 -4
- lusid/models/transaction.py +9 -2
- lusid/models/transaction_date_windows.py +85 -0
- lusid/models/transaction_price.py +3 -3
- lusid/models/transaction_price_type.py +2 -0
- lusid/models/transaction_request.py +9 -2
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- lusid/models/update_fee_type_request.py +4 -4
- lusid/models/update_group_reconciliation_comparison_ruleset_request.py +91 -0
- lusid/models/update_group_reconciliation_definition_request.py +107 -0
- lusid/models/update_reference_data_request.py +87 -0
- lusid/models/update_staging_rule_set_request.py +1 -6
- lusid/models/upsert_custom_entities_response.py +20 -1
- lusid/models/upsert_reference_portfolio_constituent_properties_request.py +84 -0
- lusid/models/upsert_reference_portfolio_constituent_properties_response.py +115 -0
- lusid/models/valuation_point_data_query_parameters.py +3 -3
- lusid/models/valuation_point_data_response.py +8 -13
- lusid/rest.py +70 -20
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/METADATA +118 -26
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/RECORD +294 -226
- {lusid_sdk-2.1.405.dist-info → lusid_sdk-2.1.537.dist-info}/WHEEL +0 -0
lusid/models/__init__.py
CHANGED
@@ -67,6 +67,7 @@ from lusid.models.allocation_set_request import AllocationSetRequest
|
|
67
67
|
from lusid.models.amortisation_event import AmortisationEvent
|
68
68
|
from lusid.models.amortisation_rule import AmortisationRule
|
69
69
|
from lusid.models.amortisation_rule_set import AmortisationRuleSet
|
70
|
+
from lusid.models.amount import Amount
|
70
71
|
from lusid.models.annul_quotes_response import AnnulQuotesResponse
|
71
72
|
from lusid.models.annul_single_structured_data_response import AnnulSingleStructuredDataResponse
|
72
73
|
from lusid.models.annul_structured_data_response import AnnulStructuredDataResponse
|
@@ -77,9 +78,13 @@ from lusid.models.barrier import Barrier
|
|
77
78
|
from lusid.models.basket import Basket
|
78
79
|
from lusid.models.basket_identifier import BasketIdentifier
|
79
80
|
from lusid.models.batch_adjust_holdings_response import BatchAdjustHoldingsResponse
|
81
|
+
from lusid.models.batch_update_user_review_for_comparison_result_request import BatchUpdateUserReviewForComparisonResultRequest
|
82
|
+
from lusid.models.batch_update_user_review_for_comparison_result_response import BatchUpdateUserReviewForComparisonResultResponse
|
83
|
+
from lusid.models.batch_upsert_dates_for_calendar_response import BatchUpsertDatesForCalendarResponse
|
80
84
|
from lusid.models.batch_upsert_instrument_properties_response import BatchUpsertInstrumentPropertiesResponse
|
81
85
|
from lusid.models.batch_upsert_portfolio_access_metadata_request import BatchUpsertPortfolioAccessMetadataRequest
|
82
86
|
from lusid.models.batch_upsert_portfolio_access_metadata_response import BatchUpsertPortfolioAccessMetadataResponse
|
87
|
+
from lusid.models.batch_upsert_portfolio_access_metadata_response_item import BatchUpsertPortfolioAccessMetadataResponseItem
|
83
88
|
from lusid.models.batch_upsert_portfolio_transactions_response import BatchUpsertPortfolioTransactionsResponse
|
84
89
|
from lusid.models.batch_upsert_property_definition_properties_response import BatchUpsertPropertyDefinitionPropertiesResponse
|
85
90
|
from lusid.models.block import Block
|
@@ -96,12 +101,14 @@ from lusid.models.bond_conversion_schedule import BondConversionSchedule
|
|
96
101
|
from lusid.models.bond_coupon_event import BondCouponEvent
|
97
102
|
from lusid.models.bond_default_event import BondDefaultEvent
|
98
103
|
from lusid.models.bond_principal_event import BondPrincipalEvent
|
104
|
+
from lusid.models.bonus_issue_event import BonusIssueEvent
|
99
105
|
from lusid.models.book_transactions_request import BookTransactionsRequest
|
100
106
|
from lusid.models.book_transactions_response import BookTransactionsResponse
|
101
107
|
from lusid.models.bool_compliance_parameter import BoolComplianceParameter
|
102
108
|
from lusid.models.bool_list_compliance_parameter import BoolListComplianceParameter
|
103
109
|
from lusid.models.branch_step import BranchStep
|
104
110
|
from lusid.models.branch_step_request import BranchStepRequest
|
111
|
+
from lusid.models.break_code_source import BreakCodeSource
|
105
112
|
from lusid.models.bucketed_cash_flow_request import BucketedCashFlowRequest
|
106
113
|
from lusid.models.bucketed_cash_flow_response import BucketedCashFlowResponse
|
107
114
|
from lusid.models.bucketing_schedule import BucketingSchedule
|
@@ -109,6 +116,10 @@ from lusid.models.calculation_info import CalculationInfo
|
|
109
116
|
from lusid.models.calendar import Calendar
|
110
117
|
from lusid.models.calendar_date import CalendarDate
|
111
118
|
from lusid.models.calendar_dependency import CalendarDependency
|
119
|
+
from lusid.models.call_on_intermediate_securities_event import CallOnIntermediateSecuritiesEvent
|
120
|
+
from lusid.models.cancel_order_and_move_remaining_result import CancelOrderAndMoveRemainingResult
|
121
|
+
from lusid.models.cancel_orders_and_move_remaining_request import CancelOrdersAndMoveRemainingRequest
|
122
|
+
from lusid.models.cancel_orders_and_move_remaining_response import CancelOrdersAndMoveRemainingResponse
|
112
123
|
from lusid.models.cancel_orders_response import CancelOrdersResponse
|
113
124
|
from lusid.models.cancel_placements_response import CancelPlacementsResponse
|
114
125
|
from lusid.models.cancelled_order_result import CancelledOrderResult
|
@@ -135,6 +146,7 @@ from lusid.models.cdx_credit_event import CdxCreditEvent
|
|
135
146
|
from lusid.models.change import Change
|
136
147
|
from lusid.models.change_history import ChangeHistory
|
137
148
|
from lusid.models.change_history_action import ChangeHistoryAction
|
149
|
+
from lusid.models.change_interval import ChangeInterval
|
138
150
|
from lusid.models.change_interval_with_order_management_detail import ChangeIntervalWithOrderManagementDetail
|
139
151
|
from lusid.models.change_item import ChangeItem
|
140
152
|
from lusid.models.chart_of_accounts import ChartOfAccounts
|
@@ -150,6 +162,7 @@ from lusid.models.cleardown_module_rules_updated_response import CleardownModule
|
|
150
162
|
from lusid.models.client import Client
|
151
163
|
from lusid.models.close_event import CloseEvent
|
152
164
|
from lusid.models.close_period_diary_entry_request import ClosePeriodDiaryEntryRequest
|
165
|
+
from lusid.models.comparison_attribute_value_pair import ComparisonAttributeValuePair
|
153
166
|
from lusid.models.complete_portfolio import CompletePortfolio
|
154
167
|
from lusid.models.complete_relation import CompleteRelation
|
155
168
|
from lusid.models.complete_relationship import CompleteRelationship
|
@@ -185,7 +198,6 @@ from lusid.models.compliance_template_variation import ComplianceTemplateVariati
|
|
185
198
|
from lusid.models.compliance_template_variation_dto import ComplianceTemplateVariationDto
|
186
199
|
from lusid.models.compliance_template_variation_request import ComplianceTemplateVariationRequest
|
187
200
|
from lusid.models.component_filter import ComponentFilter
|
188
|
-
from lusid.models.component_rule import ComponentRule
|
189
201
|
from lusid.models.component_transaction import ComponentTransaction
|
190
202
|
from lusid.models.composite_breakdown import CompositeBreakdown
|
191
203
|
from lusid.models.composite_breakdown_request import CompositeBreakdownRequest
|
@@ -219,6 +231,7 @@ from lusid.models.create_date_request import CreateDateRequest
|
|
219
231
|
from lusid.models.create_derived_property_definition_request import CreateDerivedPropertyDefinitionRequest
|
220
232
|
from lusid.models.create_derived_transaction_portfolio_request import CreateDerivedTransactionPortfolioRequest
|
221
233
|
from lusid.models.create_group_reconciliation_comparison_ruleset_request import CreateGroupReconciliationComparisonRulesetRequest
|
234
|
+
from lusid.models.create_group_reconciliation_definition_request import CreateGroupReconciliationDefinitionRequest
|
222
235
|
from lusid.models.create_portfolio_details import CreatePortfolioDetails
|
223
236
|
from lusid.models.create_portfolio_group_request import CreatePortfolioGroupRequest
|
224
237
|
from lusid.models.create_property_definition_request import CreatePropertyDefinitionRequest
|
@@ -249,6 +262,7 @@ from lusid.models.custodian_account_request import CustodianAccountRequest
|
|
249
262
|
from lusid.models.custodian_accounts_upsert_response import CustodianAccountsUpsertResponse
|
250
263
|
from lusid.models.custom_entity_definition import CustomEntityDefinition
|
251
264
|
from lusid.models.custom_entity_definition_request import CustomEntityDefinitionRequest
|
265
|
+
from lusid.models.custom_entity_entity import CustomEntityEntity
|
252
266
|
from lusid.models.custom_entity_field import CustomEntityField
|
253
267
|
from lusid.models.custom_entity_field_definition import CustomEntityFieldDefinition
|
254
268
|
from lusid.models.custom_entity_id import CustomEntityId
|
@@ -302,6 +316,7 @@ from lusid.models.economic_dependency import EconomicDependency
|
|
302
316
|
from lusid.models.economic_dependency_type import EconomicDependencyType
|
303
317
|
from lusid.models.economic_dependency_with_complex_market_data import EconomicDependencyWithComplexMarketData
|
304
318
|
from lusid.models.economic_dependency_with_quote import EconomicDependencyWithQuote
|
319
|
+
from lusid.models.effective_range import EffectiveRange
|
305
320
|
from lusid.models.election_specification import ElectionSpecification
|
306
321
|
from lusid.models.eligibility_calculation import EligibilityCalculation
|
307
322
|
from lusid.models.empty_model_options import EmptyModelOptions
|
@@ -360,6 +375,7 @@ from lusid.models.fund_configuration import FundConfiguration
|
|
360
375
|
from lusid.models.fund_configuration_properties import FundConfigurationProperties
|
361
376
|
from lusid.models.fund_configuration_request import FundConfigurationRequest
|
362
377
|
from lusid.models.fund_details import FundDetails
|
378
|
+
from lusid.models.fund_id_list import FundIdList
|
363
379
|
from lusid.models.fund_pnl_breakdown import FundPnlBreakdown
|
364
380
|
from lusid.models.fund_previous_nav import FundPreviousNAV
|
365
381
|
from lusid.models.fund_properties import FundProperties
|
@@ -416,17 +432,42 @@ from lusid.models.group_filter_step import GroupFilterStep
|
|
416
432
|
from lusid.models.group_filter_step_request import GroupFilterStepRequest
|
417
433
|
from lusid.models.group_of_market_data_key_rules import GroupOfMarketDataKeyRules
|
418
434
|
from lusid.models.group_reconciliation_aggregate_attribute_rule import GroupReconciliationAggregateAttributeRule
|
435
|
+
from lusid.models.group_reconciliation_aggregate_attribute_values import GroupReconciliationAggregateAttributeValues
|
419
436
|
from lusid.models.group_reconciliation_aggregate_comparison_rule_operand import GroupReconciliationAggregateComparisonRuleOperand
|
437
|
+
from lusid.models.group_reconciliation_comparison_result import GroupReconciliationComparisonResult
|
420
438
|
from lusid.models.group_reconciliation_comparison_rule_string_value_map import GroupReconciliationComparisonRuleStringValueMap
|
421
439
|
from lusid.models.group_reconciliation_comparison_rule_tolerance import GroupReconciliationComparisonRuleTolerance
|
422
440
|
from lusid.models.group_reconciliation_comparison_ruleset import GroupReconciliationComparisonRuleset
|
423
441
|
from lusid.models.group_reconciliation_core_attribute_rule import GroupReconciliationCoreAttributeRule
|
442
|
+
from lusid.models.group_reconciliation_core_attribute_values import GroupReconciliationCoreAttributeValues
|
424
443
|
from lusid.models.group_reconciliation_core_comparison_rule_operand import GroupReconciliationCoreComparisonRuleOperand
|
444
|
+
from lusid.models.group_reconciliation_date_pair import GroupReconciliationDatePair
|
445
|
+
from lusid.models.group_reconciliation_dates import GroupReconciliationDates
|
446
|
+
from lusid.models.group_reconciliation_definition import GroupReconciliationDefinition
|
447
|
+
from lusid.models.group_reconciliation_definition_comparison_ruleset_ids import GroupReconciliationDefinitionComparisonRulesetIds
|
448
|
+
from lusid.models.group_reconciliation_definition_currencies import GroupReconciliationDefinitionCurrencies
|
449
|
+
from lusid.models.group_reconciliation_definition_portfolio_entity_ids import GroupReconciliationDefinitionPortfolioEntityIds
|
450
|
+
from lusid.models.group_reconciliation_definition_recipe_ids import GroupReconciliationDefinitionRecipeIds
|
451
|
+
from lusid.models.group_reconciliation_instance_id import GroupReconciliationInstanceId
|
452
|
+
from lusid.models.group_reconciliation_result_statuses import GroupReconciliationResultStatuses
|
453
|
+
from lusid.models.group_reconciliation_result_types import GroupReconciliationResultTypes
|
454
|
+
from lusid.models.group_reconciliation_review_statuses import GroupReconciliationReviewStatuses
|
455
|
+
from lusid.models.group_reconciliation_run_details import GroupReconciliationRunDetails
|
456
|
+
from lusid.models.group_reconciliation_run_request import GroupReconciliationRunRequest
|
457
|
+
from lusid.models.group_reconciliation_run_response import GroupReconciliationRunResponse
|
458
|
+
from lusid.models.group_reconciliation_summary import GroupReconciliationSummary
|
459
|
+
from lusid.models.group_reconciliation_user_review import GroupReconciliationUserReview
|
460
|
+
from lusid.models.group_reconciliation_user_review_add import GroupReconciliationUserReviewAdd
|
461
|
+
from lusid.models.group_reconciliation_user_review_break_code import GroupReconciliationUserReviewBreakCode
|
462
|
+
from lusid.models.group_reconciliation_user_review_comment import GroupReconciliationUserReviewComment
|
463
|
+
from lusid.models.group_reconciliation_user_review_match_key import GroupReconciliationUserReviewMatchKey
|
464
|
+
from lusid.models.group_reconciliation_user_review_remove import GroupReconciliationUserReviewRemove
|
425
465
|
from lusid.models.grouped_result_of_address_key import GroupedResultOfAddressKey
|
426
466
|
from lusid.models.holding_adjustment import HoldingAdjustment
|
427
467
|
from lusid.models.holding_adjustment_with_date import HoldingAdjustmentWithDate
|
428
468
|
from lusid.models.holding_context import HoldingContext
|
429
469
|
from lusid.models.holding_contributor import HoldingContributor
|
470
|
+
from lusid.models.holding_ids_request import HoldingIdsRequest
|
430
471
|
from lusid.models.holding_pricing_info import HoldingPricingInfo
|
431
472
|
from lusid.models.holdings_adjustment import HoldingsAdjustment
|
432
473
|
from lusid.models.holdings_adjustment_header import HoldingsAdjustmentHeader
|
@@ -479,12 +520,14 @@ from lusid.models.interest_rate_swap import InterestRateSwap
|
|
479
520
|
from lusid.models.interest_rate_swaption import InterestRateSwaption
|
480
521
|
from lusid.models.intermediate_compliance_step import IntermediateComplianceStep
|
481
522
|
from lusid.models.intermediate_compliance_step_request import IntermediateComplianceStepRequest
|
523
|
+
from lusid.models.intermediate_securities_distribution_event import IntermediateSecuritiesDistributionEvent
|
482
524
|
from lusid.models.ir_vol_cube_data import IrVolCubeData
|
483
525
|
from lusid.models.ir_vol_dependency import IrVolDependency
|
484
526
|
from lusid.models.is_business_day_response import IsBusinessDayResponse
|
485
527
|
from lusid.models.journal_entry_line import JournalEntryLine
|
486
528
|
from lusid.models.journal_entry_lines_query_parameters import JournalEntryLinesQueryParameters
|
487
529
|
from lusid.models.label_value_set import LabelValueSet
|
530
|
+
from lusid.models.lapse_election import LapseElection
|
488
531
|
from lusid.models.leg_definition import LegDefinition
|
489
532
|
from lusid.models.legal_entity import LegalEntity
|
490
533
|
from lusid.models.level_step import LevelStep
|
@@ -495,6 +538,7 @@ from lusid.models.link import Link
|
|
495
538
|
from lusid.models.list_aggregation_reconciliation import ListAggregationReconciliation
|
496
539
|
from lusid.models.list_aggregation_response import ListAggregationResponse
|
497
540
|
from lusid.models.list_complex_market_data_with_meta_data_response import ListComplexMarketDataWithMetaDataResponse
|
541
|
+
from lusid.models.loan_facility import LoanFacility
|
498
542
|
from lusid.models.loan_period import LoanPeriod
|
499
543
|
from lusid.models.lock_period_diary_entry_request import LockPeriodDiaryEntryRequest
|
500
544
|
from lusid.models.lusid_instrument import LusidInstrument
|
@@ -516,11 +560,15 @@ from lusid.models.market_data_type import MarketDataType
|
|
516
560
|
from lusid.models.market_observable_type import MarketObservableType
|
517
561
|
from lusid.models.market_options import MarketOptions
|
518
562
|
from lusid.models.market_quote import MarketQuote
|
563
|
+
from lusid.models.mastered_instrument import MasteredInstrument
|
519
564
|
from lusid.models.match_criterion import MatchCriterion
|
520
565
|
from lusid.models.maturity_event import MaturityEvent
|
566
|
+
from lusid.models.mbs_coupon_event import MbsCouponEvent
|
567
|
+
from lusid.models.mbs_interest_deferral_event import MbsInterestDeferralEvent
|
568
|
+
from lusid.models.mbs_interest_shortfall_event import MbsInterestShortfallEvent
|
569
|
+
from lusid.models.mbs_principal_event import MbsPrincipalEvent
|
570
|
+
from lusid.models.mbs_principal_write_off_event import MbsPrincipalWriteOffEvent
|
521
571
|
from lusid.models.merger_event import MergerEvent
|
522
|
-
from lusid.models.metadata_key_value import MetadataKeyValue
|
523
|
-
from lusid.models.metadata_key_value_response import MetadataKeyValueResponse
|
524
572
|
from lusid.models.metric_value import MetricValue
|
525
573
|
from lusid.models.model_options import ModelOptions
|
526
574
|
from lusid.models.model_options_type import ModelOptionsType
|
@@ -543,6 +591,9 @@ from lusid.models.operation import Operation
|
|
543
591
|
from lusid.models.operation_type import OperationType
|
544
592
|
from lusid.models.operator import Operator
|
545
593
|
from lusid.models.option_entry import OptionEntry
|
594
|
+
from lusid.models.option_exercise_cash_event import OptionExerciseCashEvent
|
595
|
+
from lusid.models.option_exercise_election import OptionExerciseElection
|
596
|
+
from lusid.models.option_exercise_physical_event import OptionExercisePhysicalEvent
|
546
597
|
from lusid.models.optionality_schedule import OptionalitySchedule
|
547
598
|
from lusid.models.order import Order
|
548
599
|
from lusid.models.order_by_spec import OrderBySpec
|
@@ -608,6 +659,9 @@ from lusid.models.paged_resource_list_of_fee_type import PagedResourceListOfFeeT
|
|
608
659
|
from lusid.models.paged_resource_list_of_fund import PagedResourceListOfFund
|
609
660
|
from lusid.models.paged_resource_list_of_fund_configuration import PagedResourceListOfFundConfiguration
|
610
661
|
from lusid.models.paged_resource_list_of_general_ledger_profile_response import PagedResourceListOfGeneralLedgerProfileResponse
|
662
|
+
from lusid.models.paged_resource_list_of_group_reconciliation_comparison_result import PagedResourceListOfGroupReconciliationComparisonResult
|
663
|
+
from lusid.models.paged_resource_list_of_group_reconciliation_comparison_ruleset import PagedResourceListOfGroupReconciliationComparisonRuleset
|
664
|
+
from lusid.models.paged_resource_list_of_group_reconciliation_definition import PagedResourceListOfGroupReconciliationDefinition
|
611
665
|
from lusid.models.paged_resource_list_of_instrument import PagedResourceListOfInstrument
|
612
666
|
from lusid.models.paged_resource_list_of_instrument_event_holder import PagedResourceListOfInstrumentEventHolder
|
613
667
|
from lusid.models.paged_resource_list_of_instrument_event_instruction import PagedResourceListOfInstrumentEventInstruction
|
@@ -714,6 +768,7 @@ from lusid.models.property_type import PropertyType
|
|
714
768
|
from lusid.models.property_value import PropertyValue
|
715
769
|
from lusid.models.property_value_equals import PropertyValueEquals
|
716
770
|
from lusid.models.property_value_in import PropertyValueIn
|
771
|
+
from lusid.models.protection_payout_cash_flow_event import ProtectionPayoutCashFlowEvent
|
717
772
|
from lusid.models.query_applicable_instrument_events_request import QueryApplicableInstrumentEventsRequest
|
718
773
|
from lusid.models.query_bucketed_cash_flows_request import QueryBucketedCashFlowsRequest
|
719
774
|
from lusid.models.query_cash_flows_request import QueryCashFlowsRequest
|
@@ -782,6 +837,7 @@ from lusid.models.resource_list_of_block_and_orders import ResourceListOfBlockAn
|
|
782
837
|
from lusid.models.resource_list_of_calendar_date import ResourceListOfCalendarDate
|
783
838
|
from lusid.models.resource_list_of_change import ResourceListOfChange
|
784
839
|
from lusid.models.resource_list_of_change_history import ResourceListOfChangeHistory
|
840
|
+
from lusid.models.resource_list_of_change_interval import ResourceListOfChangeInterval
|
785
841
|
from lusid.models.resource_list_of_change_interval_with_order_management_detail import ResourceListOfChangeIntervalWithOrderManagementDetail
|
786
842
|
from lusid.models.resource_list_of_compliance_breached_order_info import ResourceListOfComplianceBreachedOrderInfo
|
787
843
|
from lusid.models.resource_list_of_compliance_rule import ResourceListOfComplianceRule
|
@@ -810,6 +866,7 @@ from lusid.models.resource_list_of_mapping import ResourceListOfMapping
|
|
810
866
|
from lusid.models.resource_list_of_moved_order_to_different_block_response import ResourceListOfMovedOrderToDifferentBlockResponse
|
811
867
|
from lusid.models.resource_list_of_order import ResourceListOfOrder
|
812
868
|
from lusid.models.resource_list_of_order_instruction import ResourceListOfOrderInstruction
|
869
|
+
from lusid.models.resource_list_of_output_transaction import ResourceListOfOutputTransaction
|
813
870
|
from lusid.models.resource_list_of_package import ResourceListOfPackage
|
814
871
|
from lusid.models.resource_list_of_participation import ResourceListOfParticipation
|
815
872
|
from lusid.models.resource_list_of_performance_return import ResourceListOfPerformanceReturn
|
@@ -851,6 +908,7 @@ from lusid.models.result_value_dictionary import ResultValueDictionary
|
|
851
908
|
from lusid.models.result_value_int import ResultValueInt
|
852
909
|
from lusid.models.result_value_string import ResultValueString
|
853
910
|
from lusid.models.result_value_type import ResultValueType
|
911
|
+
from lusid.models.return_zero_pv_options import ReturnZeroPvOptions
|
854
912
|
from lusid.models.reverse_stock_split_event import ReverseStockSplitEvent
|
855
913
|
from lusid.models.rounding_configuration import RoundingConfiguration
|
856
914
|
from lusid.models.rounding_configuration_component import RoundingConfigurationComponent
|
@@ -873,6 +931,7 @@ from lusid.models.set_person_properties_request import SetPersonPropertiesReques
|
|
873
931
|
from lusid.models.set_share_class_instruments_request import SetShareClassInstrumentsRequest
|
874
932
|
from lusid.models.set_transaction_configuration_alias import SetTransactionConfigurationAlias
|
875
933
|
from lusid.models.set_transaction_configuration_source_request import SetTransactionConfigurationSourceRequest
|
934
|
+
from lusid.models.settlement_cycle import SettlementCycle
|
876
935
|
from lusid.models.settlement_schedule import SettlementSchedule
|
877
936
|
from lusid.models.share_class_amount import ShareClassAmount
|
878
937
|
from lusid.models.share_class_breakdown import ShareClassBreakdown
|
@@ -887,6 +946,7 @@ from lusid.models.side_definition_request import SideDefinitionRequest
|
|
887
946
|
from lusid.models.sides_definition_request import SidesDefinitionRequest
|
888
947
|
from lusid.models.simple_cash_flow_loan import SimpleCashFlowLoan
|
889
948
|
from lusid.models.simple_instrument import SimpleInstrument
|
949
|
+
from lusid.models.simple_rounding_convention import SimpleRoundingConvention
|
890
950
|
from lusid.models.sort_order import SortOrder
|
891
951
|
from lusid.models.specific_holding_pricing_info import SpecificHoldingPricingInfo
|
892
952
|
from lusid.models.spin_off_event import SpinOffEvent
|
@@ -920,6 +980,7 @@ from lusid.models.target_tax_lot_request import TargetTaxLotRequest
|
|
920
980
|
from lusid.models.tax_rule import TaxRule
|
921
981
|
from lusid.models.tax_rule_set import TaxRuleSet
|
922
982
|
from lusid.models.template_field import TemplateField
|
983
|
+
from lusid.models.tender_event import TenderEvent
|
923
984
|
from lusid.models.term_deposit import TermDeposit
|
924
985
|
from lusid.models.total_return_swap import TotalReturnSwap
|
925
986
|
from lusid.models.touch import Touch
|
@@ -932,6 +993,7 @@ from lusid.models.transaction_configuration_movement_data import TransactionConf
|
|
932
993
|
from lusid.models.transaction_configuration_movement_data_request import TransactionConfigurationMovementDataRequest
|
933
994
|
from lusid.models.transaction_configuration_type_alias import TransactionConfigurationTypeAlias
|
934
995
|
from lusid.models.transaction_currency_and_amount import TransactionCurrencyAndAmount
|
996
|
+
from lusid.models.transaction_date_windows import TransactionDateWindows
|
935
997
|
from lusid.models.transaction_diagnostics import TransactionDiagnostics
|
936
998
|
from lusid.models.transaction_field_map import TransactionFieldMap
|
937
999
|
from lusid.models.transaction_price import TransactionPrice
|
@@ -989,6 +1051,8 @@ from lusid.models.update_cut_label_definition_request import UpdateCutLabelDefin
|
|
989
1051
|
from lusid.models.update_data_type_request import UpdateDataTypeRequest
|
990
1052
|
from lusid.models.update_derived_property_definition_request import UpdateDerivedPropertyDefinitionRequest
|
991
1053
|
from lusid.models.update_fee_type_request import UpdateFeeTypeRequest
|
1054
|
+
from lusid.models.update_group_reconciliation_comparison_ruleset_request import UpdateGroupReconciliationComparisonRulesetRequest
|
1055
|
+
from lusid.models.update_group_reconciliation_definition_request import UpdateGroupReconciliationDefinitionRequest
|
992
1056
|
from lusid.models.update_instrument_identifier_request import UpdateInstrumentIdentifierRequest
|
993
1057
|
from lusid.models.update_orders_response import UpdateOrdersResponse
|
994
1058
|
from lusid.models.update_placements_response import UpdatePlacementsResponse
|
@@ -996,6 +1060,7 @@ from lusid.models.update_portfolio_group_request import UpdatePortfolioGroupRequ
|
|
996
1060
|
from lusid.models.update_portfolio_request import UpdatePortfolioRequest
|
997
1061
|
from lusid.models.update_property_definition_request import UpdatePropertyDefinitionRequest
|
998
1062
|
from lusid.models.update_reconciliation_request import UpdateReconciliationRequest
|
1063
|
+
from lusid.models.update_reference_data_request import UpdateReferenceDataRequest
|
999
1064
|
from lusid.models.update_relationship_definition_request import UpdateRelationshipDefinitionRequest
|
1000
1065
|
from lusid.models.update_staging_rule_set_request import UpdateStagingRuleSetRequest
|
1001
1066
|
from lusid.models.update_tax_rule_set_request import UpdateTaxRuleSetRequest
|
@@ -1033,6 +1098,8 @@ from lusid.models.upsert_quote_request import UpsertQuoteRequest
|
|
1033
1098
|
from lusid.models.upsert_quotes_response import UpsertQuotesResponse
|
1034
1099
|
from lusid.models.upsert_recipe_composer_request import UpsertRecipeComposerRequest
|
1035
1100
|
from lusid.models.upsert_recipe_request import UpsertRecipeRequest
|
1101
|
+
from lusid.models.upsert_reference_portfolio_constituent_properties_request import UpsertReferencePortfolioConstituentPropertiesRequest
|
1102
|
+
from lusid.models.upsert_reference_portfolio_constituent_properties_response import UpsertReferencePortfolioConstituentPropertiesResponse
|
1036
1103
|
from lusid.models.upsert_reference_portfolio_constituents_request import UpsertReferencePortfolioConstituentsRequest
|
1037
1104
|
from lusid.models.upsert_reference_portfolio_constituents_response import UpsertReferencePortfolioConstituentsResponse
|
1038
1105
|
from lusid.models.upsert_result_values_data_request import UpsertResultValuesDataRequest
|
@@ -1137,6 +1204,7 @@ __all__ = [
|
|
1137
1204
|
"AmortisationEvent",
|
1138
1205
|
"AmortisationRule",
|
1139
1206
|
"AmortisationRuleSet",
|
1207
|
+
"Amount",
|
1140
1208
|
"AnnulQuotesResponse",
|
1141
1209
|
"AnnulSingleStructuredDataResponse",
|
1142
1210
|
"AnnulStructuredDataResponse",
|
@@ -1147,9 +1215,13 @@ __all__ = [
|
|
1147
1215
|
"Basket",
|
1148
1216
|
"BasketIdentifier",
|
1149
1217
|
"BatchAdjustHoldingsResponse",
|
1218
|
+
"BatchUpdateUserReviewForComparisonResultRequest",
|
1219
|
+
"BatchUpdateUserReviewForComparisonResultResponse",
|
1220
|
+
"BatchUpsertDatesForCalendarResponse",
|
1150
1221
|
"BatchUpsertInstrumentPropertiesResponse",
|
1151
1222
|
"BatchUpsertPortfolioAccessMetadataRequest",
|
1152
1223
|
"BatchUpsertPortfolioAccessMetadataResponse",
|
1224
|
+
"BatchUpsertPortfolioAccessMetadataResponseItem",
|
1153
1225
|
"BatchUpsertPortfolioTransactionsResponse",
|
1154
1226
|
"BatchUpsertPropertyDefinitionPropertiesResponse",
|
1155
1227
|
"Block",
|
@@ -1166,12 +1238,14 @@ __all__ = [
|
|
1166
1238
|
"BondCouponEvent",
|
1167
1239
|
"BondDefaultEvent",
|
1168
1240
|
"BondPrincipalEvent",
|
1241
|
+
"BonusIssueEvent",
|
1169
1242
|
"BookTransactionsRequest",
|
1170
1243
|
"BookTransactionsResponse",
|
1171
1244
|
"BoolComplianceParameter",
|
1172
1245
|
"BoolListComplianceParameter",
|
1173
1246
|
"BranchStep",
|
1174
1247
|
"BranchStepRequest",
|
1248
|
+
"BreakCodeSource",
|
1175
1249
|
"BucketedCashFlowRequest",
|
1176
1250
|
"BucketedCashFlowResponse",
|
1177
1251
|
"BucketingSchedule",
|
@@ -1179,6 +1253,10 @@ __all__ = [
|
|
1179
1253
|
"Calendar",
|
1180
1254
|
"CalendarDate",
|
1181
1255
|
"CalendarDependency",
|
1256
|
+
"CallOnIntermediateSecuritiesEvent",
|
1257
|
+
"CancelOrderAndMoveRemainingResult",
|
1258
|
+
"CancelOrdersAndMoveRemainingRequest",
|
1259
|
+
"CancelOrdersAndMoveRemainingResponse",
|
1182
1260
|
"CancelOrdersResponse",
|
1183
1261
|
"CancelPlacementsResponse",
|
1184
1262
|
"CancelledOrderResult",
|
@@ -1205,6 +1283,7 @@ __all__ = [
|
|
1205
1283
|
"Change",
|
1206
1284
|
"ChangeHistory",
|
1207
1285
|
"ChangeHistoryAction",
|
1286
|
+
"ChangeInterval",
|
1208
1287
|
"ChangeIntervalWithOrderManagementDetail",
|
1209
1288
|
"ChangeItem",
|
1210
1289
|
"ChartOfAccounts",
|
@@ -1220,6 +1299,7 @@ __all__ = [
|
|
1220
1299
|
"Client",
|
1221
1300
|
"CloseEvent",
|
1222
1301
|
"ClosePeriodDiaryEntryRequest",
|
1302
|
+
"ComparisonAttributeValuePair",
|
1223
1303
|
"CompletePortfolio",
|
1224
1304
|
"CompleteRelation",
|
1225
1305
|
"CompleteRelationship",
|
@@ -1255,7 +1335,6 @@ __all__ = [
|
|
1255
1335
|
"ComplianceTemplateVariationDto",
|
1256
1336
|
"ComplianceTemplateVariationRequest",
|
1257
1337
|
"ComponentFilter",
|
1258
|
-
"ComponentRule",
|
1259
1338
|
"ComponentTransaction",
|
1260
1339
|
"CompositeBreakdown",
|
1261
1340
|
"CompositeBreakdownRequest",
|
@@ -1289,6 +1368,7 @@ __all__ = [
|
|
1289
1368
|
"CreateDerivedPropertyDefinitionRequest",
|
1290
1369
|
"CreateDerivedTransactionPortfolioRequest",
|
1291
1370
|
"CreateGroupReconciliationComparisonRulesetRequest",
|
1371
|
+
"CreateGroupReconciliationDefinitionRequest",
|
1292
1372
|
"CreatePortfolioDetails",
|
1293
1373
|
"CreatePortfolioGroupRequest",
|
1294
1374
|
"CreatePropertyDefinitionRequest",
|
@@ -1319,6 +1399,7 @@ __all__ = [
|
|
1319
1399
|
"CustodianAccountsUpsertResponse",
|
1320
1400
|
"CustomEntityDefinition",
|
1321
1401
|
"CustomEntityDefinitionRequest",
|
1402
|
+
"CustomEntityEntity",
|
1322
1403
|
"CustomEntityField",
|
1323
1404
|
"CustomEntityFieldDefinition",
|
1324
1405
|
"CustomEntityId",
|
@@ -1372,6 +1453,7 @@ __all__ = [
|
|
1372
1453
|
"EconomicDependencyType",
|
1373
1454
|
"EconomicDependencyWithComplexMarketData",
|
1374
1455
|
"EconomicDependencyWithQuote",
|
1456
|
+
"EffectiveRange",
|
1375
1457
|
"ElectionSpecification",
|
1376
1458
|
"EligibilityCalculation",
|
1377
1459
|
"EmptyModelOptions",
|
@@ -1430,6 +1512,7 @@ __all__ = [
|
|
1430
1512
|
"FundConfigurationProperties",
|
1431
1513
|
"FundConfigurationRequest",
|
1432
1514
|
"FundDetails",
|
1515
|
+
"FundIdList",
|
1433
1516
|
"FundPnlBreakdown",
|
1434
1517
|
"FundPreviousNAV",
|
1435
1518
|
"FundProperties",
|
@@ -1486,17 +1569,42 @@ __all__ = [
|
|
1486
1569
|
"GroupFilterStepRequest",
|
1487
1570
|
"GroupOfMarketDataKeyRules",
|
1488
1571
|
"GroupReconciliationAggregateAttributeRule",
|
1572
|
+
"GroupReconciliationAggregateAttributeValues",
|
1489
1573
|
"GroupReconciliationAggregateComparisonRuleOperand",
|
1574
|
+
"GroupReconciliationComparisonResult",
|
1490
1575
|
"GroupReconciliationComparisonRuleStringValueMap",
|
1491
1576
|
"GroupReconciliationComparisonRuleTolerance",
|
1492
1577
|
"GroupReconciliationComparisonRuleset",
|
1493
1578
|
"GroupReconciliationCoreAttributeRule",
|
1579
|
+
"GroupReconciliationCoreAttributeValues",
|
1494
1580
|
"GroupReconciliationCoreComparisonRuleOperand",
|
1581
|
+
"GroupReconciliationDatePair",
|
1582
|
+
"GroupReconciliationDates",
|
1583
|
+
"GroupReconciliationDefinition",
|
1584
|
+
"GroupReconciliationDefinitionComparisonRulesetIds",
|
1585
|
+
"GroupReconciliationDefinitionCurrencies",
|
1586
|
+
"GroupReconciliationDefinitionPortfolioEntityIds",
|
1587
|
+
"GroupReconciliationDefinitionRecipeIds",
|
1588
|
+
"GroupReconciliationInstanceId",
|
1589
|
+
"GroupReconciliationResultStatuses",
|
1590
|
+
"GroupReconciliationResultTypes",
|
1591
|
+
"GroupReconciliationReviewStatuses",
|
1592
|
+
"GroupReconciliationRunDetails",
|
1593
|
+
"GroupReconciliationRunRequest",
|
1594
|
+
"GroupReconciliationRunResponse",
|
1595
|
+
"GroupReconciliationSummary",
|
1596
|
+
"GroupReconciliationUserReview",
|
1597
|
+
"GroupReconciliationUserReviewAdd",
|
1598
|
+
"GroupReconciliationUserReviewBreakCode",
|
1599
|
+
"GroupReconciliationUserReviewComment",
|
1600
|
+
"GroupReconciliationUserReviewMatchKey",
|
1601
|
+
"GroupReconciliationUserReviewRemove",
|
1495
1602
|
"GroupedResultOfAddressKey",
|
1496
1603
|
"HoldingAdjustment",
|
1497
1604
|
"HoldingAdjustmentWithDate",
|
1498
1605
|
"HoldingContext",
|
1499
1606
|
"HoldingContributor",
|
1607
|
+
"HoldingIdsRequest",
|
1500
1608
|
"HoldingPricingInfo",
|
1501
1609
|
"HoldingsAdjustment",
|
1502
1610
|
"HoldingsAdjustmentHeader",
|
@@ -1549,12 +1657,14 @@ __all__ = [
|
|
1549
1657
|
"InterestRateSwaption",
|
1550
1658
|
"IntermediateComplianceStep",
|
1551
1659
|
"IntermediateComplianceStepRequest",
|
1660
|
+
"IntermediateSecuritiesDistributionEvent",
|
1552
1661
|
"IrVolCubeData",
|
1553
1662
|
"IrVolDependency",
|
1554
1663
|
"IsBusinessDayResponse",
|
1555
1664
|
"JournalEntryLine",
|
1556
1665
|
"JournalEntryLinesQueryParameters",
|
1557
1666
|
"LabelValueSet",
|
1667
|
+
"LapseElection",
|
1558
1668
|
"LegDefinition",
|
1559
1669
|
"LegalEntity",
|
1560
1670
|
"LevelStep",
|
@@ -1565,6 +1675,7 @@ __all__ = [
|
|
1565
1675
|
"ListAggregationReconciliation",
|
1566
1676
|
"ListAggregationResponse",
|
1567
1677
|
"ListComplexMarketDataWithMetaDataResponse",
|
1678
|
+
"LoanFacility",
|
1568
1679
|
"LoanPeriod",
|
1569
1680
|
"LockPeriodDiaryEntryRequest",
|
1570
1681
|
"LusidInstrument",
|
@@ -1586,11 +1697,15 @@ __all__ = [
|
|
1586
1697
|
"MarketObservableType",
|
1587
1698
|
"MarketOptions",
|
1588
1699
|
"MarketQuote",
|
1700
|
+
"MasteredInstrument",
|
1589
1701
|
"MatchCriterion",
|
1590
1702
|
"MaturityEvent",
|
1703
|
+
"MbsCouponEvent",
|
1704
|
+
"MbsInterestDeferralEvent",
|
1705
|
+
"MbsInterestShortfallEvent",
|
1706
|
+
"MbsPrincipalEvent",
|
1707
|
+
"MbsPrincipalWriteOffEvent",
|
1591
1708
|
"MergerEvent",
|
1592
|
-
"MetadataKeyValue",
|
1593
|
-
"MetadataKeyValueResponse",
|
1594
1709
|
"MetricValue",
|
1595
1710
|
"ModelOptions",
|
1596
1711
|
"ModelOptionsType",
|
@@ -1613,6 +1728,9 @@ __all__ = [
|
|
1613
1728
|
"OperationType",
|
1614
1729
|
"Operator",
|
1615
1730
|
"OptionEntry",
|
1731
|
+
"OptionExerciseCashEvent",
|
1732
|
+
"OptionExerciseElection",
|
1733
|
+
"OptionExercisePhysicalEvent",
|
1616
1734
|
"OptionalitySchedule",
|
1617
1735
|
"Order",
|
1618
1736
|
"OrderBySpec",
|
@@ -1678,6 +1796,9 @@ __all__ = [
|
|
1678
1796
|
"PagedResourceListOfFund",
|
1679
1797
|
"PagedResourceListOfFundConfiguration",
|
1680
1798
|
"PagedResourceListOfGeneralLedgerProfileResponse",
|
1799
|
+
"PagedResourceListOfGroupReconciliationComparisonResult",
|
1800
|
+
"PagedResourceListOfGroupReconciliationComparisonRuleset",
|
1801
|
+
"PagedResourceListOfGroupReconciliationDefinition",
|
1681
1802
|
"PagedResourceListOfInstrument",
|
1682
1803
|
"PagedResourceListOfInstrumentEventHolder",
|
1683
1804
|
"PagedResourceListOfInstrumentEventInstruction",
|
@@ -1784,6 +1905,7 @@ __all__ = [
|
|
1784
1905
|
"PropertyValue",
|
1785
1906
|
"PropertyValueEquals",
|
1786
1907
|
"PropertyValueIn",
|
1908
|
+
"ProtectionPayoutCashFlowEvent",
|
1787
1909
|
"QueryApplicableInstrumentEventsRequest",
|
1788
1910
|
"QueryBucketedCashFlowsRequest",
|
1789
1911
|
"QueryCashFlowsRequest",
|
@@ -1852,6 +1974,7 @@ __all__ = [
|
|
1852
1974
|
"ResourceListOfCalendarDate",
|
1853
1975
|
"ResourceListOfChange",
|
1854
1976
|
"ResourceListOfChangeHistory",
|
1977
|
+
"ResourceListOfChangeInterval",
|
1855
1978
|
"ResourceListOfChangeIntervalWithOrderManagementDetail",
|
1856
1979
|
"ResourceListOfComplianceBreachedOrderInfo",
|
1857
1980
|
"ResourceListOfComplianceRule",
|
@@ -1880,6 +2003,7 @@ __all__ = [
|
|
1880
2003
|
"ResourceListOfMovedOrderToDifferentBlockResponse",
|
1881
2004
|
"ResourceListOfOrder",
|
1882
2005
|
"ResourceListOfOrderInstruction",
|
2006
|
+
"ResourceListOfOutputTransaction",
|
1883
2007
|
"ResourceListOfPackage",
|
1884
2008
|
"ResourceListOfParticipation",
|
1885
2009
|
"ResourceListOfPerformanceReturn",
|
@@ -1921,6 +2045,7 @@ __all__ = [
|
|
1921
2045
|
"ResultValueInt",
|
1922
2046
|
"ResultValueString",
|
1923
2047
|
"ResultValueType",
|
2048
|
+
"ReturnZeroPvOptions",
|
1924
2049
|
"ReverseStockSplitEvent",
|
1925
2050
|
"RoundingConfiguration",
|
1926
2051
|
"RoundingConfigurationComponent",
|
@@ -1943,6 +2068,7 @@ __all__ = [
|
|
1943
2068
|
"SetShareClassInstrumentsRequest",
|
1944
2069
|
"SetTransactionConfigurationAlias",
|
1945
2070
|
"SetTransactionConfigurationSourceRequest",
|
2071
|
+
"SettlementCycle",
|
1946
2072
|
"SettlementSchedule",
|
1947
2073
|
"ShareClassAmount",
|
1948
2074
|
"ShareClassBreakdown",
|
@@ -1957,6 +2083,7 @@ __all__ = [
|
|
1957
2083
|
"SidesDefinitionRequest",
|
1958
2084
|
"SimpleCashFlowLoan",
|
1959
2085
|
"SimpleInstrument",
|
2086
|
+
"SimpleRoundingConvention",
|
1960
2087
|
"SortOrder",
|
1961
2088
|
"SpecificHoldingPricingInfo",
|
1962
2089
|
"SpinOffEvent",
|
@@ -1990,6 +2117,7 @@ __all__ = [
|
|
1990
2117
|
"TaxRule",
|
1991
2118
|
"TaxRuleSet",
|
1992
2119
|
"TemplateField",
|
2120
|
+
"TenderEvent",
|
1993
2121
|
"TermDeposit",
|
1994
2122
|
"TotalReturnSwap",
|
1995
2123
|
"Touch",
|
@@ -2002,6 +2130,7 @@ __all__ = [
|
|
2002
2130
|
"TransactionConfigurationMovementDataRequest",
|
2003
2131
|
"TransactionConfigurationTypeAlias",
|
2004
2132
|
"TransactionCurrencyAndAmount",
|
2133
|
+
"TransactionDateWindows",
|
2005
2134
|
"TransactionDiagnostics",
|
2006
2135
|
"TransactionFieldMap",
|
2007
2136
|
"TransactionPrice",
|
@@ -2059,6 +2188,8 @@ __all__ = [
|
|
2059
2188
|
"UpdateDataTypeRequest",
|
2060
2189
|
"UpdateDerivedPropertyDefinitionRequest",
|
2061
2190
|
"UpdateFeeTypeRequest",
|
2191
|
+
"UpdateGroupReconciliationComparisonRulesetRequest",
|
2192
|
+
"UpdateGroupReconciliationDefinitionRequest",
|
2062
2193
|
"UpdateInstrumentIdentifierRequest",
|
2063
2194
|
"UpdateOrdersResponse",
|
2064
2195
|
"UpdatePlacementsResponse",
|
@@ -2066,6 +2197,7 @@ __all__ = [
|
|
2066
2197
|
"UpdatePortfolioRequest",
|
2067
2198
|
"UpdatePropertyDefinitionRequest",
|
2068
2199
|
"UpdateReconciliationRequest",
|
2200
|
+
"UpdateReferenceDataRequest",
|
2069
2201
|
"UpdateRelationshipDefinitionRequest",
|
2070
2202
|
"UpdateStagingRuleSetRequest",
|
2071
2203
|
"UpdateTaxRuleSetRequest",
|
@@ -2103,6 +2235,8 @@ __all__ = [
|
|
2103
2235
|
"UpsertQuotesResponse",
|
2104
2236
|
"UpsertRecipeComposerRequest",
|
2105
2237
|
"UpsertRecipeRequest",
|
2238
|
+
"UpsertReferencePortfolioConstituentPropertiesRequest",
|
2239
|
+
"UpsertReferencePortfolioConstituentPropertiesResponse",
|
2106
2240
|
"UpsertReferencePortfolioConstituentsRequest",
|
2107
2241
|
"UpsertReferencePortfolioConstituentsResponse",
|
2108
2242
|
"UpsertResultValuesDataRequest",
|
@@ -23,7 +23,7 @@ from pydantic.v1 import BaseModel, Field, constr
|
|
23
23
|
|
24
24
|
class AccessMetadataValue(BaseModel):
|
25
25
|
"""
|
26
|
-
An access control value. Provider should only be used if you are a service
|
26
|
+
An access control value. Provider should only be used if you are a service provider licensing data. In that case the provider value must match your domain. # noqa: E501
|
27
27
|
"""
|
28
28
|
value: constr(strict=True, max_length=2048, min_length=0) = Field(...)
|
29
29
|
provider: Optional[constr(strict=True, max_length=50, min_length=0)] = None
|
@@ -38,6 +38,13 @@ class AccountingMethod(str, Enum):
|
|
38
38
|
PRORATEBYUNITS = 'ProRateByUnits'
|
39
39
|
PRORATEBYCOST = 'ProRateByCost'
|
40
40
|
PRORATEBYCOSTPORTFOLIOCURRENCY = 'ProRateByCostPortfolioCurrency'
|
41
|
+
INTRADAYTHENFIRSTINFIRSTOUT = 'IntraDayThenFirstInFirstOut'
|
42
|
+
LONGTERMHIGHESTCOSTFIRST = 'LongTermHighestCostFirst'
|
43
|
+
LONGTERMHIGHESTCOSTFIRSTPORTFOLIOCURRENCY = 'LongTermHighestCostFirstPortfolioCurrency'
|
44
|
+
HIGHESTCOSTFIRSTPORTFOLIOCURRENCY = 'HighestCostFirstPortfolioCurrency'
|
45
|
+
LOWESTCOSTFIRSTPORTFOLIOCURRENCY = 'LowestCostFirstPortfolioCurrency'
|
46
|
+
MAXIMUMLOSSMINIMUMGAIN = 'MaximumLossMinimumGain'
|
47
|
+
MAXIMUMLOSSMINIMUMGAINPORTFOLIOCURRENCY = 'MaximumLossMinimumGainPortfolioCurrency'
|
41
48
|
|
42
49
|
@classmethod
|
43
50
|
def from_json(cls, json_str: str) -> AccountingMethod:
|
@@ -31,15 +31,15 @@ class AccumulationEvent(InstrumentEvent):
|
|
31
31
|
dividend_rate: Union[StrictFloat, StrictInt] = Field(..., alias="dividendRate", description="Dividend rate or payment rate as a percentage. i.e. 5% is written as 0.05")
|
32
32
|
ex_date: datetime = Field(..., alias="exDate", description="The first business day on which the dividend is not owed to the buying party. Typically this is T-1 from the RecordDate.")
|
33
33
|
payment_date: datetime = Field(..., alias="paymentDate", description="The date the company pays out dividends to shareholders.")
|
34
|
-
instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent, SwapCashFlowEvent, SwapPrincipalEvent, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent")
|
34
|
+
instrument_event_type: StrictStr = Field(..., alias="instrumentEventType", description="The Type of Event. The available values are: TransitionEvent, InformationalEvent, OpenEvent, CloseEvent, StockSplitEvent, BondDefaultEvent, CashDividendEvent, AmortisationEvent, CashFlowEvent, ExerciseEvent, ResetEvent, TriggerEvent, RawVendorEvent, InformationalErrorEvent, BondCouponEvent, DividendReinvestmentEvent, AccumulationEvent, BondPrincipalEvent, DividendOptionEvent, MaturityEvent, FxForwardSettlementEvent, ExpiryEvent, ScripDividendEvent, StockDividendEvent, ReverseStockSplitEvent, CapitalDistributionEvent, SpinOffEvent, MergerEvent, FutureExpiryEvent, SwapCashFlowEvent, SwapPrincipalEvent, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent, BonusIssueEvent, MbsPrincipalWriteOffEvent, MbsInterestDeferralEvent, MbsInterestShortfallEvent, TenderEvent, CallOnIntermediateSecuritiesEvent, IntermediateSecuritiesDistributionEvent, OptionExercisePhysicalEvent, OptionExerciseCashEvent, ProtectionPayoutCashFlowEvent")
|
35
35
|
additional_properties: Dict[str, Any] = {}
|
36
36
|
__properties = ["instrumentEventType", "announcementDate", "dividendCurrency", "dividendRate", "exDate", "paymentDate"]
|
37
37
|
|
38
38
|
@validator('instrument_event_type')
|
39
39
|
def instrument_event_type_validate_enum(cls, value):
|
40
40
|
"""Validates the enum"""
|
41
|
-
if value not in ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent'):
|
42
|
-
raise ValueError("must be one of enum values ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent')")
|
41
|
+
if value not in ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent', 'BonusIssueEvent', 'MbsPrincipalWriteOffEvent', 'MbsInterestDeferralEvent', 'MbsInterestShortfallEvent', 'TenderEvent', 'CallOnIntermediateSecuritiesEvent', 'IntermediateSecuritiesDistributionEvent', 'OptionExercisePhysicalEvent', 'OptionExerciseCashEvent', 'ProtectionPayoutCashFlowEvent'):
|
42
|
+
raise ValueError("must be one of enum values ('TransitionEvent', 'InformationalEvent', 'OpenEvent', 'CloseEvent', 'StockSplitEvent', 'BondDefaultEvent', 'CashDividendEvent', 'AmortisationEvent', 'CashFlowEvent', 'ExerciseEvent', 'ResetEvent', 'TriggerEvent', 'RawVendorEvent', 'InformationalErrorEvent', 'BondCouponEvent', 'DividendReinvestmentEvent', 'AccumulationEvent', 'BondPrincipalEvent', 'DividendOptionEvent', 'MaturityEvent', 'FxForwardSettlementEvent', 'ExpiryEvent', 'ScripDividendEvent', 'StockDividendEvent', 'ReverseStockSplitEvent', 'CapitalDistributionEvent', 'SpinOffEvent', 'MergerEvent', 'FutureExpiryEvent', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent', 'BonusIssueEvent', 'MbsPrincipalWriteOffEvent', 'MbsInterestDeferralEvent', 'MbsInterestShortfallEvent', 'TenderEvent', 'CallOnIntermediateSecuritiesEvent', 'IntermediateSecuritiesDistributionEvent', 'OptionExercisePhysicalEvent', 'OptionExerciseCashEvent', 'ProtectionPayoutCashFlowEvent')")
|
43
43
|
return value
|
44
44
|
|
45
45
|
class Config:
|
lusid/models/address_key_list.py
CHANGED
@@ -27,15 +27,15 @@ class AddressKeyList(ReferenceList):
|
|
27
27
|
AddressKeyList
|
28
28
|
"""
|
29
29
|
values: conlist(StrictStr, max_items=100, min_items=0) = Field(...)
|
30
|
-
reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList")
|
30
|
+
reference_list_type: StrictStr = Field(..., alias="referenceListType", description="The reference list values. The available values are: PortfolioGroupIdList, PortfolioIdList, AddressKeyList, StringList, InstrumentList, DecimalList, PropertyList, FundIdList")
|
31
31
|
additional_properties: Dict[str, Any] = {}
|
32
32
|
__properties = ["referenceListType", "values"]
|
33
33
|
|
34
34
|
@validator('reference_list_type')
|
35
35
|
def reference_list_type_validate_enum(cls, value):
|
36
36
|
"""Validates the enum"""
|
37
|
-
if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList'):
|
38
|
-
raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList')")
|
37
|
+
if value not in ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList', 'FundIdList'):
|
38
|
+
raise ValueError("must be one of enum values ('PortfolioGroupIdList', 'PortfolioIdList', 'AddressKeyList', 'StringList', 'InstrumentList', 'DecimalList', 'PropertyList', 'FundIdList')")
|
39
39
|
return value
|
40
40
|
|
41
41
|
class Config:
|