lusid-sdk 2.1.351__py3-none-any.whl → 2.1.363__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 +6 -0
- lusid/api/funds_api.py +9 -8
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +6 -0
- lusid/models/accept_estimate_valuation_point_response.py +100 -0
- lusid/models/accumulation_event.py +3 -3
- lusid/models/amortisation_event.py +3 -3
- lusid/models/bond_coupon_event.py +3 -3
- lusid/models/bond_default_event.py +3 -3
- lusid/models/bond_principal_event.py +3 -3
- lusid/models/capital_distribution_event.py +3 -3
- lusid/models/cash_dividend_event.py +3 -3
- lusid/models/cash_flow_event.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/dividend_option_event.py +3 -3
- lusid/models/dividend_reinvestment_event.py +3 -3
- lusid/models/exercise_event.py +3 -3
- lusid/models/expiry_event.py +3 -3
- lusid/models/future_expiry_event.py +3 -3
- lusid/models/fx_forward_settlement_event.py +3 -3
- lusid/models/informational_error_event.py +3 -3
- lusid/models/informational_event.py +3 -3
- lusid/models/instrument_event.py +7 -5
- lusid/models/instrument_event_type.py +2 -0
- lusid/models/maturity_event.py +3 -3
- lusid/models/merger_event.py +3 -3
- lusid/models/open_event.py +3 -3
- lusid/models/order_update_request.py +5 -0
- lusid/models/raw_vendor_event.py +3 -3
- lusid/models/reset_event.py +3 -3
- lusid/models/reverse_stock_split_event.py +3 -3
- lusid/models/scrip_dividend_event.py +3 -3
- lusid/models/spin_off_event.py +3 -3
- lusid/models/stock_dividend_event.py +3 -3
- lusid/models/stock_split_event.py +3 -3
- lusid/models/swap_cash_flow_event.py +97 -0
- lusid/models/swap_principal_event.py +97 -0
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.363.dist-info}/METADATA +4 -1
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.363.dist-info}/RECORD +42 -39
- {lusid_sdk-2.1.351.dist-info → lusid_sdk-2.1.363.dist-info}/WHEEL +0 -0
@@ -0,0 +1,97 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
LUSID API
|
5
|
+
|
6
|
+
FINBOURNE Technology # noqa: E501
|
7
|
+
|
8
|
+
Contact: info@finbourne.com
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
"""
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from datetime import datetime
|
21
|
+
from typing import Any, Dict, Optional, Union
|
22
|
+
from pydantic.v1 import Field, StrictFloat, StrictInt, StrictStr, validator
|
23
|
+
from lusid.models.instrument_event import InstrumentEvent
|
24
|
+
|
25
|
+
class SwapCashFlowEvent(InstrumentEvent):
|
26
|
+
"""
|
27
|
+
Definition of a swap cash flow event. This event describes the cashflow generated from either an interest rate swap or inflation swap instrument. # noqa: E501
|
28
|
+
"""
|
29
|
+
ex_date: datetime = Field(..., alias="exDate", description="The ex-dividend date of the cashflow.")
|
30
|
+
payment_date: datetime = Field(..., alias="paymentDate", description="The payment date of the cashflow.")
|
31
|
+
currency: StrictStr = Field(..., description="The currency in which the cashflow is paid.")
|
32
|
+
cash_flow_per_unit: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="cashFlowPerUnit", description="The cashflow amount received for each unit of the instrument held on the ex date.")
|
33
|
+
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")
|
34
|
+
additional_properties: Dict[str, Any] = {}
|
35
|
+
__properties = ["instrumentEventType", "exDate", "paymentDate", "currency", "cashFlowPerUnit"]
|
36
|
+
|
37
|
+
@validator('instrument_event_type')
|
38
|
+
def instrument_event_type_validate_enum(cls, value):
|
39
|
+
"""Validates the enum"""
|
40
|
+
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'):
|
41
|
+
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')")
|
42
|
+
return value
|
43
|
+
|
44
|
+
class Config:
|
45
|
+
"""Pydantic configuration"""
|
46
|
+
allow_population_by_field_name = True
|
47
|
+
validate_assignment = True
|
48
|
+
|
49
|
+
def to_str(self) -> str:
|
50
|
+
"""Returns the string representation of the model using alias"""
|
51
|
+
return pprint.pformat(self.dict(by_alias=True))
|
52
|
+
|
53
|
+
def to_json(self) -> str:
|
54
|
+
"""Returns the JSON representation of the model using alias"""
|
55
|
+
return json.dumps(self.to_dict())
|
56
|
+
|
57
|
+
@classmethod
|
58
|
+
def from_json(cls, json_str: str) -> SwapCashFlowEvent:
|
59
|
+
"""Create an instance of SwapCashFlowEvent from a JSON string"""
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
61
|
+
|
62
|
+
def to_dict(self):
|
63
|
+
"""Returns the dictionary representation of the model using alias"""
|
64
|
+
_dict = self.dict(by_alias=True,
|
65
|
+
exclude={
|
66
|
+
"additional_properties"
|
67
|
+
},
|
68
|
+
exclude_none=True)
|
69
|
+
# puts key-value pairs in additional_properties in the top level
|
70
|
+
if self.additional_properties is not None:
|
71
|
+
for _key, _value in self.additional_properties.items():
|
72
|
+
_dict[_key] = _value
|
73
|
+
|
74
|
+
return _dict
|
75
|
+
|
76
|
+
@classmethod
|
77
|
+
def from_dict(cls, obj: dict) -> SwapCashFlowEvent:
|
78
|
+
"""Create an instance of SwapCashFlowEvent from a dict"""
|
79
|
+
if obj is None:
|
80
|
+
return None
|
81
|
+
|
82
|
+
if not isinstance(obj, dict):
|
83
|
+
return SwapCashFlowEvent.parse_obj(obj)
|
84
|
+
|
85
|
+
_obj = SwapCashFlowEvent.parse_obj({
|
86
|
+
"instrument_event_type": obj.get("instrumentEventType"),
|
87
|
+
"ex_date": obj.get("exDate"),
|
88
|
+
"payment_date": obj.get("paymentDate"),
|
89
|
+
"currency": obj.get("currency"),
|
90
|
+
"cash_flow_per_unit": obj.get("cashFlowPerUnit")
|
91
|
+
})
|
92
|
+
# store additional fields in additional_properties
|
93
|
+
for _key in obj.keys():
|
94
|
+
if _key not in cls.__properties:
|
95
|
+
_obj.additional_properties[_key] = obj.get(_key)
|
96
|
+
|
97
|
+
return _obj
|
@@ -0,0 +1,97 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
LUSID API
|
5
|
+
|
6
|
+
FINBOURNE Technology # noqa: E501
|
7
|
+
|
8
|
+
Contact: info@finbourne.com
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
10
|
+
|
11
|
+
Do not edit the class manually.
|
12
|
+
"""
|
13
|
+
|
14
|
+
|
15
|
+
from __future__ import annotations
|
16
|
+
import pprint
|
17
|
+
import re # noqa: F401
|
18
|
+
import json
|
19
|
+
|
20
|
+
from datetime import datetime
|
21
|
+
from typing import Any, Dict, Optional, Union
|
22
|
+
from pydantic.v1 import Field, StrictFloat, StrictInt, StrictStr, validator
|
23
|
+
from lusid.models.instrument_event import InstrumentEvent
|
24
|
+
|
25
|
+
class SwapPrincipalEvent(InstrumentEvent):
|
26
|
+
"""
|
27
|
+
Definition of a Swap Principal Event. This is an event that describes the occurence of a cashflow due to the principal payment. # noqa: E501
|
28
|
+
"""
|
29
|
+
ex_date: datetime = Field(..., alias="exDate", description="The entitlement date of the principal payment.")
|
30
|
+
payment_date: datetime = Field(..., alias="paymentDate", description="The payment date of the principal.")
|
31
|
+
currency: StrictStr = Field(..., description="The currency in which the principal is paid.")
|
32
|
+
principal_per_unit: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="principalPerUnit", description="The principal amount received for each unit of the instrument held on the ex date.")
|
33
|
+
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")
|
34
|
+
additional_properties: Dict[str, Any] = {}
|
35
|
+
__properties = ["instrumentEventType", "exDate", "paymentDate", "currency", "principalPerUnit"]
|
36
|
+
|
37
|
+
@validator('instrument_event_type')
|
38
|
+
def instrument_event_type_validate_enum(cls, value):
|
39
|
+
"""Validates the enum"""
|
40
|
+
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'):
|
41
|
+
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')")
|
42
|
+
return value
|
43
|
+
|
44
|
+
class Config:
|
45
|
+
"""Pydantic configuration"""
|
46
|
+
allow_population_by_field_name = True
|
47
|
+
validate_assignment = True
|
48
|
+
|
49
|
+
def to_str(self) -> str:
|
50
|
+
"""Returns the string representation of the model using alias"""
|
51
|
+
return pprint.pformat(self.dict(by_alias=True))
|
52
|
+
|
53
|
+
def to_json(self) -> str:
|
54
|
+
"""Returns the JSON representation of the model using alias"""
|
55
|
+
return json.dumps(self.to_dict())
|
56
|
+
|
57
|
+
@classmethod
|
58
|
+
def from_json(cls, json_str: str) -> SwapPrincipalEvent:
|
59
|
+
"""Create an instance of SwapPrincipalEvent from a JSON string"""
|
60
|
+
return cls.from_dict(json.loads(json_str))
|
61
|
+
|
62
|
+
def to_dict(self):
|
63
|
+
"""Returns the dictionary representation of the model using alias"""
|
64
|
+
_dict = self.dict(by_alias=True,
|
65
|
+
exclude={
|
66
|
+
"additional_properties"
|
67
|
+
},
|
68
|
+
exclude_none=True)
|
69
|
+
# puts key-value pairs in additional_properties in the top level
|
70
|
+
if self.additional_properties is not None:
|
71
|
+
for _key, _value in self.additional_properties.items():
|
72
|
+
_dict[_key] = _value
|
73
|
+
|
74
|
+
return _dict
|
75
|
+
|
76
|
+
@classmethod
|
77
|
+
def from_dict(cls, obj: dict) -> SwapPrincipalEvent:
|
78
|
+
"""Create an instance of SwapPrincipalEvent from a dict"""
|
79
|
+
if obj is None:
|
80
|
+
return None
|
81
|
+
|
82
|
+
if not isinstance(obj, dict):
|
83
|
+
return SwapPrincipalEvent.parse_obj(obj)
|
84
|
+
|
85
|
+
_obj = SwapPrincipalEvent.parse_obj({
|
86
|
+
"instrument_event_type": obj.get("instrumentEventType"),
|
87
|
+
"ex_date": obj.get("exDate"),
|
88
|
+
"payment_date": obj.get("paymentDate"),
|
89
|
+
"currency": obj.get("currency"),
|
90
|
+
"principal_per_unit": obj.get("principalPerUnit")
|
91
|
+
})
|
92
|
+
# store additional fields in additional_properties
|
93
|
+
for _key in obj.keys():
|
94
|
+
if _key not in cls.__properties:
|
95
|
+
_obj.additional_properties[_key] = obj.get(_key)
|
96
|
+
|
97
|
+
return _obj
|
lusid/models/transition_event.py
CHANGED
@@ -34,15 +34,15 @@ class TransitionEvent(InstrumentEvent):
|
|
34
34
|
payment_date: Optional[datetime] = Field(None, alias="paymentDate", description="The payment date of the corporate action")
|
35
35
|
input_transition: Optional[InputTransition] = Field(None, alias="inputTransition")
|
36
36
|
output_transitions: Optional[conlist(OutputTransition)] = Field(None, alias="outputTransitions", description="The resulting transitions from this event")
|
37
|
-
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")
|
37
|
+
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")
|
38
38
|
additional_properties: Dict[str, Any] = {}
|
39
39
|
__properties = ["instrumentEventType", "announcementDate", "exDate", "recordDate", "paymentDate", "inputTransition", "outputTransitions"]
|
40
40
|
|
41
41
|
@validator('instrument_event_type')
|
42
42
|
def instrument_event_type_validate_enum(cls, value):
|
43
43
|
"""Validates the enum"""
|
44
|
-
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'):
|
45
|
-
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')")
|
44
|
+
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'):
|
45
|
+
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')")
|
46
46
|
return value
|
47
47
|
|
48
48
|
class Config:
|
lusid/models/trigger_event.py
CHANGED
@@ -31,15 +31,15 @@ class TriggerEvent(InstrumentEvent):
|
|
31
31
|
trigger_direction: constr(strict=True, min_length=1) = Field(..., alias="triggerDirection", description="The direction of the trigger; valid options are Up and Down")
|
32
32
|
trigger_date: datetime = Field(..., alias="triggerDate", description="The date the trigger happens at.")
|
33
33
|
maturity_date: datetime = Field(..., alias="maturityDate", description="The date the trigger takes effect.")
|
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")
|
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")
|
35
35
|
additional_properties: Dict[str, Any] = {}
|
36
36
|
__properties = ["instrumentEventType", "level", "triggerType", "triggerDirection", "triggerDate", "maturityDate"]
|
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'):
|
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')")
|
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'):
|
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')")
|
43
43
|
return value
|
44
44
|
|
45
45
|
class Config:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lusid-sdk
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.363
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -608,6 +608,7 @@ Class | Method | HTTP request | Description
|
|
608
608
|
- [AborConfigurationRequest](docs/AborConfigurationRequest.md)
|
609
609
|
- [AborProperties](docs/AborProperties.md)
|
610
610
|
- [AborRequest](docs/AborRequest.md)
|
611
|
+
- [AcceptEstimateValuationPointResponse](docs/AcceptEstimateValuationPointResponse.md)
|
611
612
|
- [AccessControlledAction](docs/AccessControlledAction.md)
|
612
613
|
- [AccessControlledResource](docs/AccessControlledResource.md)
|
613
614
|
- [AccessMetadataOperation](docs/AccessMetadataOperation.md)
|
@@ -1475,6 +1476,8 @@ Class | Method | HTTP request | Description
|
|
1475
1476
|
- [StructuredResultData](docs/StructuredResultData.md)
|
1476
1477
|
- [StructuredResultDataId](docs/StructuredResultDataId.md)
|
1477
1478
|
- [SubHoldingKeyValueEquals](docs/SubHoldingKeyValueEquals.md)
|
1479
|
+
- [SwapCashFlowEvent](docs/SwapCashFlowEvent.md)
|
1480
|
+
- [SwapPrincipalEvent](docs/SwapPrincipalEvent.md)
|
1478
1481
|
- [TargetTaxLot](docs/TargetTaxLot.md)
|
1479
1482
|
- [TargetTaxLotRequest](docs/TargetTaxLotRequest.md)
|
1480
1483
|
- [TaxRule](docs/TaxRule.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=g1iTrXHj_DRp6lNpC7UbMBSiTUjc0DmoSK1pL-ZPe6s,115890
|
2
2
|
lusid/api/__init__.py,sha256=Bb3bcrxtC0uDjdtbVJhBtJwkeST_VBjl3mTqHOrJ2iM,5721
|
3
3
|
lusid/api/abor_api.py,sha256=AvgsHuWE7qRSYJhKveBE2htSjHpqqS0VNJrysAfwME0,159655
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
@@ -26,7 +26,7 @@ lusid/api/entities_api.py,sha256=gwA41PK2gtuUq8tT20Nl5sC0EffveDvvR_83X5NOWso,571
|
|
26
26
|
lusid/api/executions_api.py,sha256=u92G5bsNwzMlKt9OyV7MQy6BTJc3TC9_7qgg8xXAuL0,44375
|
27
27
|
lusid/api/fee_types_api.py,sha256=4_wZtZkRyK2RHfDBwAK2XrspWzF_LCBYe_RUt_Y17zM,56137
|
28
28
|
lusid/api/fund_configurations_api.py,sha256=XbNaocdjU8sf37NZmH6NR1VMSITut9Fw6SMhOVBEjJ4,64107
|
29
|
-
lusid/api/funds_api.py,sha256=
|
29
|
+
lusid/api/funds_api.py,sha256=9XGZuq4hrZZyBoQUi6p-TLAgF4wfB2oRp0OGl95j8N4,215573
|
30
30
|
lusid/api/instrument_event_types_api.py,sha256=shwiW-AatQw-mEwD-TS1d8M2AtV62gqvfF3utyIqe0Y,81546
|
31
31
|
lusid/api/instrument_events_api.py,sha256=UPQV3mxxrcnAQ8Yscsb1aUUdg7ItSFDpU03Fwg1Ij1s,58508
|
32
32
|
lusid/api/instruments_api.py,sha256=fujR7OV0OhvegttvAMq6oy_xn9xYcXw3ks_JMj9_XQM,281273
|
@@ -69,7 +69,7 @@ lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,
|
|
69
69
|
lusid/api/workspace_api.py,sha256=tVTg9U0EBp-Usbg0skl_s_yiN1TVUNXlCi0YUWjdrH4,192167
|
70
70
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
71
71
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
72
|
-
lusid/configuration.py,sha256=
|
72
|
+
lusid/configuration.py,sha256=MES8v9M5Klquv-prLey5X94jKPizj2YA8DZ9_HLohW4,14733
|
73
73
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
74
74
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
75
75
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
@@ -83,7 +83,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
83
83
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
84
84
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
85
85
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
86
|
-
lusid/models/__init__.py,sha256=
|
86
|
+
lusid/models/__init__.py,sha256=_-ud2u1sbLdJnu6B9HO05xp3JWKw5QH0svuO2JUANvE,109137
|
87
87
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
88
88
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
89
89
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -94,6 +94,7 @@ lusid/models/abor_configuration_properties.py,sha256=8J-W1eXrTbQ-myTXT1p1w7E3l7m
|
|
94
94
|
lusid/models/abor_configuration_request.py,sha256=JsJjPjMlRz9ABN5-ZgSHGo8Y0F75Mgt1NGrVBLhph70,6539
|
95
95
|
lusid/models/abor_properties.py,sha256=83o68lF269v-cMx0qkBrd5FJ2Hczt_Fwj4CmwQVwOeI,4242
|
96
96
|
lusid/models/abor_request.py,sha256=EiuEkWVo2QQu8c_dvSuscIWctgWRvD_3_BaPld4ChMM,5474
|
97
|
+
lusid/models/accept_estimate_valuation_point_response.py,sha256=IiXqNaKCQGRpR1Hp87fNnQ_GHCzeQ8D2QLVlkmt14co,4253
|
97
98
|
lusid/models/access_controlled_action.py,sha256=SQ5nARtg3Y8wwyaMa7vPaaIcLlghZdg5D-3BcckpB0o,3863
|
98
99
|
lusid/models/access_controlled_resource.py,sha256=T2Uo6SQ_hDnooZokdJRlEfUJpko4FLjv6E-jzbBMEeo,4806
|
99
100
|
lusid/models/access_metadata_operation.py,sha256=As6kww7oDMa6K0N7u9fue9xgZNZlkB0AClTNISoknHI,3476
|
@@ -102,7 +103,7 @@ lusid/models/account.py,sha256=6sKzuazRI0NIs6HOu3y7cy5omeagVVCVxlILA8EGDQE,5124
|
|
102
103
|
lusid/models/account_properties.py,sha256=fqKIfQ7tbAwodW8tZu86JTapAW5lVNNMonB6F2C1s5g,4272
|
103
104
|
lusid/models/accounting_method.py,sha256=UC5QH3NF4X8MZoAxXfyb8HYDt4JghXoyFytj1Bx9zN4,981
|
104
105
|
lusid/models/accounts_upsert_response.py,sha256=qHHsFTkMqhIufYG3RBvXB1YimBluJREx-iq7bd2DL50,4120
|
105
|
-
lusid/models/accumulation_event.py,sha256=
|
106
|
+
lusid/models/accumulation_event.py,sha256=xGdpr6z0PJ7Zni_fMaPn3H4M303WpDQUPTtLJ6VU8II,6064
|
106
107
|
lusid/models/action_id.py,sha256=rpG71w2AU6aWl6IpxkjpzkCgBtSLBQmLgmjQQ2cS3rw,2057
|
107
108
|
lusid/models/add_business_days_to_date_request.py,sha256=AfWmdr91A1Wpf0yT6CEEymkHYLXYha5Lll3EXe8FDtE,2640
|
108
109
|
lusid/models/add_business_days_to_date_response.py,sha256=wWo01x8xabbdMWzv73T7nRNBsKi1LYXJWTSaj4VCnWs,2013
|
@@ -133,7 +134,7 @@ lusid/models/allocation.py,sha256=sC9oB2NMNWtZt0wnh7wMzQXw6OQxaeHaCfLxNWO-JjM,11
|
|
133
134
|
lusid/models/allocation_request.py,sha256=GSGe0qAgCArKH1p7swa2a-4IG-w_hLwn_Ntseyh9dW0,9777
|
134
135
|
lusid/models/allocation_service_run_response.py,sha256=qOd5aKAwcjpCh2q5zTxWdGD5FitMpB86hmB89mC2zlo,3454
|
135
136
|
lusid/models/allocation_set_request.py,sha256=41ePNu4AX5sFtGER31_V2PFlqlqen1TkMsIAmcdmvd8,2851
|
136
|
-
lusid/models/amortisation_event.py,sha256=
|
137
|
+
lusid/models/amortisation_event.py,sha256=XYfdnZIcRNJMtBpSlzV_Ih6uu7jZIgvNal2I4i2qIDs,5701
|
137
138
|
lusid/models/amortisation_rule.py,sha256=-82zbA7s0GE49EWBZ6yAsfehhN64j6z-nnOi4jTL1CE,3638
|
138
139
|
lusid/models/amortisation_rule_set.py,sha256=ExFKfMCGVF2-MYZfT_GrCwgsP1aC8vc5R6HI63wLe9E,5356
|
139
140
|
lusid/models/annul_quotes_response.py,sha256=mYZSWeQx2veyirZnrWl2HWLB1nLYxqfLC-kAD87L2Qo,4347
|
@@ -160,9 +161,9 @@ lusid/models/blocked_order_request.py,sha256=K8u2BlSw00h5xKcyKrHvA48hesX8WW9x27x
|
|
160
161
|
lusid/models/bond.py,sha256=9NmvVk46a7PsiLa5Ji6jbU9pepXtF_1hOlfkvXuWGpk,12351
|
161
162
|
lusid/models/bond_conversion_entry.py,sha256=DFS635pxCi5hsrfOfOxH6gWlAzUDD9D7u75NPCLZF6Q,3549
|
162
163
|
lusid/models/bond_conversion_schedule.py,sha256=ETxUYhDRyycn_LyLd2P8dT0bHS-Z1XrCYIQdc-vWm8k,7658
|
163
|
-
lusid/models/bond_coupon_event.py,sha256=
|
164
|
-
lusid/models/bond_default_event.py,sha256=
|
165
|
-
lusid/models/bond_principal_event.py,sha256=
|
164
|
+
lusid/models/bond_coupon_event.py,sha256=WGthtnuFTsqB4FRAakhhF8xvKZ8gEei1tyQgpCgJFTY,5478
|
165
|
+
lusid/models/bond_default_event.py,sha256=FERhYnnTbRLTA18asiO-I0o5h1FmsfabrFtmG5lG0ps,4956
|
166
|
+
lusid/models/bond_principal_event.py,sha256=qzkroqD8hRhS1vMbzK73LOD8--w4wKcDpyKCyt79STI,5513
|
166
167
|
lusid/models/book_transactions_request.py,sha256=fPB779I5p_8Iv7VCrHsGId-5WhgSer6yNAmZpoDBksY,3719
|
167
168
|
lusid/models/book_transactions_response.py,sha256=4duW5WZ1cspArgEXKbm2eWXROYkJ1evRJK6QmvhXNMg,3537
|
168
169
|
lusid/models/bool_compliance_parameter.py,sha256=ltt-fC0CalevZ0Akz96t0C5KoDKwbJqiKX5yD1pjCDw,5283
|
@@ -181,13 +182,13 @@ lusid/models/cancel_placements_response.py,sha256=xe43QiiMvapew4BvR1C3wj5tYgn-zL
|
|
181
182
|
lusid/models/cancelled_order_result.py,sha256=ZAwAhNd7IouFTPRwwYvAflZqlYkbweSttNmJ6cHoIkw,2187
|
182
183
|
lusid/models/cancelled_placement_result.py,sha256=eW3lgoyFakoGKcFSp3WN11bpuJyJun9jm8rVS4hdxwg,3127
|
183
184
|
lusid/models/cap_floor.py,sha256=njXRS6hQ-0fmlpaX7VVzLaxB5NpJHTYn_4HMp9e6BSA,6051
|
184
|
-
lusid/models/capital_distribution_event.py,sha256=
|
185
|
+
lusid/models/capital_distribution_event.py,sha256=wvO_2ZvAZJgjOTBA_bkyPuJUZtQqp4g_ydSfBkuWtes,6816
|
185
186
|
lusid/models/cash.py,sha256=2Cr5kt0P4mlmsMRwtiFNaMBHwa1YSDGcwhR8XrdWi18,4934
|
186
187
|
lusid/models/cash_and_security_offer_election.py,sha256=9xxHftE8QRdsizLEXCyvxFdkPpm9KU3fxz8WNjJv430,3933
|
187
188
|
lusid/models/cash_dependency.py,sha256=zwUJWL1OvD_DRCBLNRunbtsw9vBRXcri3hMmlu3oXGI,4182
|
188
|
-
lusid/models/cash_dividend_event.py,sha256=
|
189
|
+
lusid/models/cash_dividend_event.py,sha256=fMus0_J678D-DuEcorVtpyztgYCgTtUjs5k831WXsBI,6767
|
189
190
|
lusid/models/cash_election.py,sha256=S4WDmP90O1Q-M_PgOCkUCZ6qixZwBz3DF0HRpUMwD1I,3882
|
190
|
-
lusid/models/cash_flow_event.py,sha256=
|
191
|
+
lusid/models/cash_flow_event.py,sha256=XojLiGqmcaqRTKzajEfngimpbnP8vWrE0mwIhDaHEXo,5476
|
191
192
|
lusid/models/cash_flow_lineage.py,sha256=Y46Eg39U0pkAyCez2xzh87zHFu-3R8GAShjiEUyao78,4785
|
192
193
|
lusid/models/cash_flow_value.py,sha256=McLO_czOfxxoX6QrOHT-WJZh7pB5nzC--nxSg1KKcgo,5099
|
193
194
|
lusid/models/cash_flow_value_set.py,sha256=_YLdVEB8NRztQQ2TsQk0hDWR8wad6hRuO-5MTuOtw_Y,4424
|
@@ -212,7 +213,7 @@ lusid/models/cleardown_module_response.py,sha256=SjHPnXa8sgJmEniGDeZu4wxkNQke5SJ
|
|
212
213
|
lusid/models/cleardown_module_rule.py,sha256=ggzdjEZXxEAZjOL-zCZH7z05IkpBx4hJ60rKDc_QzhA,3505
|
213
214
|
lusid/models/cleardown_module_rules_updated_response.py,sha256=gVxjkztmGxvnHaGMQjmrL8hw0N7GhJKRpujbLdSk6T8,4316
|
214
215
|
lusid/models/client.py,sha256=C-cuudkA8GKpa3GKnbetJFu8kE5E88Ap1h_72UHqKVA,1980
|
215
|
-
lusid/models/close_event.py,sha256=
|
216
|
+
lusid/models/close_event.py,sha256=2qq_HgCI__HATp8Vy1BlyRU5JlqvfS3bF13IXKu25k8,5158
|
216
217
|
lusid/models/close_period_diary_entry_request.py,sha256=sD2X7MALlyW6tCr7Y2voUINkNVqF6YpcYdkMsQubaa0,6490
|
217
218
|
lusid/models/complete_portfolio.py,sha256=_y1LTAZ7pErx7ioQu20WLK_l3sy55JRoJo8c4yZb3jE,7827
|
218
219
|
lusid/models/complete_relation.py,sha256=T1Wd-knJ0m60ZV82FRinBboqaj0XioTUirK43ozT1q4,3908
|
@@ -358,8 +359,8 @@ lusid/models/diary_entry_request.py,sha256=csolELI7sBqBKdzpM7EBD-2EiJFs4fBA_k6TJ
|
|
358
359
|
lusid/models/discount_factor_curve_data.py,sha256=Xh3uEXruTb6oVMQoTkAoCGSGC9nBC-5WtjGfjWbD5TU,5522
|
359
360
|
lusid/models/discounting_dependency.py,sha256=jE2qCUrOKNXFviSm7dxV9qH8KZcMtzhL65KSeSPVZ1c,4377
|
360
361
|
lusid/models/discounting_method.py,sha256=MlWtNqjuA9R4G5hosNUyP5NgFDnzlOpVHgnRH44uo-k,734
|
361
|
-
lusid/models/dividend_option_event.py,sha256=
|
362
|
-
lusid/models/dividend_reinvestment_event.py,sha256=
|
362
|
+
lusid/models/dividend_option_event.py,sha256=6WflR_RVepMORgvFR5kmZbBK835bBttDzCxQAY-dNIQ,7811
|
363
|
+
lusid/models/dividend_reinvestment_event.py,sha256=QLu8rRPVxCGUDq2kiGBTyhBWRTMVL_8zSf2ybsrk3xI,7697
|
363
364
|
lusid/models/economic_dependency.py,sha256=cl_ZetMATxLqsO4VRK8k9JuVDQWuhYwuBDuXW7X-1RU,6096
|
364
365
|
lusid/models/economic_dependency_type.py,sha256=tx37PkXssBSTW8Rqm1PN8XFEKR4lEkTgnLwL0EvMh3k,1290
|
365
366
|
lusid/models/economic_dependency_with_complex_market_data.py,sha256=2iTNQhxgay9BaToXvx2v7SDq8Mm4qWCvYEczUQn0Zsk,3051
|
@@ -385,10 +386,10 @@ lusid/models/exchange_traded_option_contract_details.py,sha256=kTmC8XarImx5iMSCm
|
|
385
386
|
lusid/models/execution.py,sha256=xgTGRwDwyKoIs2Pr1bO2gyqCZse_xbUX-FawwhMDgS8,8094
|
386
387
|
lusid/models/execution_request.py,sha256=QIRsZXIKhl_YftXWBWjaT1IZuvIzSi766FWAx7I6Qlc,6720
|
387
388
|
lusid/models/execution_set_request.py,sha256=CXGgbdH8abVfPqnUs4J1xR_mHI3byH4ES_T7IGDm0nM,2672
|
388
|
-
lusid/models/exercise_event.py,sha256=
|
389
|
+
lusid/models/exercise_event.py,sha256=rnHT7hJuBRJ-YpLTjM6ogybpo9H9CrYPqH_ERC04KnA,5706
|
389
390
|
lusid/models/exotic_instrument.py,sha256=S_6ClvoShzX-aMizXUufaQqpZ0aNSBQdRL8-r-DeFnA,5776
|
390
391
|
lusid/models/expanded_group.py,sha256=e1fIiusdlI_VtjJlF4g5O_yg6A_5VDOg2LaW94CUyJU,5931
|
391
|
-
lusid/models/expiry_event.py,sha256=
|
392
|
+
lusid/models/expiry_event.py,sha256=PBBhGilyV2qpy-ujkEvk21Wo290XTt_8SIiV3AfSCvE,4872
|
392
393
|
lusid/models/fee.py,sha256=oMJgUsrJ3IsvK6bZlEtsTA2LF_4yncnzecVgh4w9VpU,10618
|
393
394
|
lusid/models/fee_accrual.py,sha256=4u5DYJpuu0mwhpXafCRA1mHCdDhNMjwpuTMllxUiqkI,4319
|
394
395
|
lusid/models/fee_properties.py,sha256=Q92whmRw6aIwyxsgLVF9vntTY5WLwtrDdJMw9sSNoEQ,4232
|
@@ -430,7 +431,7 @@ lusid/models/fund_valuation_point_data.py,sha256=iAuj4b7Kz8Ty67myYntjROcZBkhckc5
|
|
430
431
|
lusid/models/funding_leg.py,sha256=b_0D_GqQCPqOllNvb6VSqyjBO4H2v7YYefAj7joTsBI,7455
|
431
432
|
lusid/models/funding_leg_options.py,sha256=_GxHVcvcsd96OaNcb7iHs43UUfrwVno_x2cNowUSwjw,3515
|
432
433
|
lusid/models/future.py,sha256=9jcXTZJxaijpVAz-8-65Jv9yig4qYQEeU2z9oRdEPaU,9084
|
433
|
-
lusid/models/future_expiry_event.py,sha256=
|
434
|
+
lusid/models/future_expiry_event.py,sha256=EcjXUm8CYgoRbClIqgnfhn4N4OTt6c6YbVnIEfGqhGE,5760
|
434
435
|
lusid/models/futures_contract_details.py,sha256=CjQVhrPcyBfyVdpob0UD8L5MM3velxwtYxFLyZlwKug,7903
|
435
436
|
lusid/models/fx_conventions.py,sha256=hs2udXMqlr1OAwMZDgPjqF-NVDneZ-a8J8lrN90_d5g,2612
|
436
437
|
lusid/models/fx_dependency.py,sha256=KAxeXfKxJBPeXk42egQTkladphCeHa58jqOKFXiVAeU,5214
|
@@ -439,7 +440,7 @@ lusid/models/fx_forward_curve_by_quote_reference.py,sha256=KUwwMke3qyymP2UTTrfDu
|
|
439
440
|
lusid/models/fx_forward_curve_data.py,sha256=6xwJY_fAEVIbZyDVrbrgUR8YikalHiZ22ooDJHPH9tk,5758
|
440
441
|
lusid/models/fx_forward_model_options.py,sha256=jSnnHeRJ8oKL7To5qWHpVg-vu9k0zlAuZoJ4vHnZXPw,4864
|
441
442
|
lusid/models/fx_forward_pips_curve_data.py,sha256=h4E7tSAeTqLRaINpG_CCDdIvVMwk6hMCrjGNdb34j4Y,5885
|
442
|
-
lusid/models/fx_forward_settlement_event.py,sha256=
|
443
|
+
lusid/models/fx_forward_settlement_event.py,sha256=c5pmmYcJch0NNGav8X3SA7hzXPuWyJ-xljBjjKFt3mU,8742
|
443
444
|
lusid/models/fx_forward_tenor_curve_data.py,sha256=S1kHnkg2Fpds9xDXzjLxBoUXGb70uDsEBg0zkNxfs1Q,7547
|
444
445
|
lusid/models/fx_forward_tenor_pips_curve_data.py,sha256=S8fQm_x1CiHXAQAMs4Pp7bczo7DWfUpRTzbhbs-r-zw,7645
|
445
446
|
lusid/models/fx_forwards_dependency.py,sha256=0ziw4k_SX5hMqWJdZ0pYxRVL2xWD7d0hLgFOHQqosR0,5238
|
@@ -494,8 +495,8 @@ lusid/models/inflation_index_conventions.py,sha256=I9uG6oCE8M5IHq63DZXvH1fI_5TzM
|
|
494
495
|
lusid/models/inflation_leg.py,sha256=TUdofB72xJkFsumuZ4KZxwMhD8P6ArIChosAKUpKX9M,9890
|
495
496
|
lusid/models/inflation_linked_bond.py,sha256=Y3RAsJrSm6XxvnezhzVrcJ_0mvSm-n_9tFczo-MgRlo,13899
|
496
497
|
lusid/models/inflation_swap.py,sha256=8Pv4AN-oYsJHAemq44Vh-XXPx6XBFtVG9V51DUZHbHk,6910
|
497
|
-
lusid/models/informational_error_event.py,sha256=
|
498
|
-
lusid/models/informational_event.py,sha256=
|
498
|
+
lusid/models/informational_error_event.py,sha256=k7ZonZKTwTN-VPytCjz8XStGfJY4Brflnaw3_U9bMF4,5303
|
499
|
+
lusid/models/informational_event.py,sha256=LnBFYOur9oEe-vxOtZrFuBILZXjr8BL7-IUaHlsaxko,6316
|
499
500
|
lusid/models/inline_valuation_request.py,sha256=Qn5CwniPwvIDFzkF2GFubAyFFUkT2I9VK99q4mAHK2w,10449
|
500
501
|
lusid/models/inline_valuations_reconciliation_request.py,sha256=ifM58Y663WkSy5kgZCVxSkRxKDe4QpU6qSELGA25VGs,4749
|
501
502
|
lusid/models/input_transition.py,sha256=-ZYi6ocgtgDHyrJzVm04FvQSTO5Gn22Tx_wdY7wWKxg,2225
|
@@ -506,13 +507,13 @@ lusid/models/instrument_definition.py,sha256=0WsRDxXH3Anop2IImyoQiEkMRxs8MktSfkj
|
|
506
507
|
lusid/models/instrument_definition_format.py,sha256=yhFb5bjsk3u2aUYukxXfcN2m9BBGVI0Zw0z9vBmm5Rk,2854
|
507
508
|
lusid/models/instrument_delete_modes.py,sha256=pRnKhwXly5wA6KEnvvphzEBS6ThT-iuuhS4JFVEal3s,682
|
508
509
|
lusid/models/instrument_entity.py,sha256=Rb9jT5z_oGK9fiKWjuU6Xi6HnYZVa6gbaFA35KCMgyc,7488
|
509
|
-
lusid/models/instrument_event.py,sha256=
|
510
|
+
lusid/models/instrument_event.py,sha256=IzFtlJMZV2GcNnLiVbScTfOrF3KlqGKlZQJcUxHtGp0,7721
|
510
511
|
lusid/models/instrument_event_configuration.py,sha256=igoNv4Dvea9arqNFQXuwV_NcDUD0ZmeJ5b8_YKOGWyY,2797
|
511
512
|
lusid/models/instrument_event_holder.py,sha256=kbrQ_yd4X9THZo4oLdvB3HeUwJSmeVpOoIOBUy1o7fs,6994
|
512
513
|
lusid/models/instrument_event_instruction.py,sha256=euUiqidTQl6Il7KsKvjGs0u1BmaJ8zBpnNWMSXzQ3GY,5464
|
513
514
|
lusid/models/instrument_event_instruction_request.py,sha256=uDTvxy3TrTjrLCBl5G-zDEBWuSRYwtXJ_Bzys3NyuH0,3639
|
514
515
|
lusid/models/instrument_event_instructions_response.py,sha256=Wr4XI1bNMijF7h1COCze7QXUCbl-nc8fQ3ZTNFGZFGE,3984
|
515
|
-
lusid/models/instrument_event_type.py,sha256=
|
516
|
+
lusid/models/instrument_event_type.py,sha256=GISfL8YHpvnnmWYIQniuEl4PTPLJYq45WSAN7ImAPGM,1956
|
516
517
|
lusid/models/instrument_id_type_descriptor.py,sha256=0p18FCVnh60RF3LiLPOsDgbqAyeGJPn_UETTaII0Dx4,2569
|
517
518
|
lusid/models/instrument_id_value.py,sha256=wWr4npSEr_hpTWDjFf8WhALa4o0NFNPmNKpuxY1S6PI,2220
|
518
519
|
lusid/models/instrument_leg.py,sha256=VLwsAAYE-icIaQWSX5B033ZEOpVwJlRlaArkL9Wi0PQ,5677
|
@@ -569,8 +570,8 @@ lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNr
|
|
569
570
|
lusid/models/market_options.py,sha256=peTygbETrHWKcKnKsn4ItPbgu0PidKG8d2U-DCApCAo,6247
|
570
571
|
lusid/models/market_quote.py,sha256=Ra6tOiimR6Rdf7pAESEWW2IMZG669jU8eNje8NepYZg,3325
|
571
572
|
lusid/models/match_criterion.py,sha256=cnLfFgO9k05dH7ooGS7s3d8BvyJNuVMDUh3Yt-SPuec,3568
|
572
|
-
lusid/models/maturity_event.py,sha256=
|
573
|
-
lusid/models/merger_event.py,sha256=
|
573
|
+
lusid/models/maturity_event.py,sha256=JcAXmmI54CkxC1qTaB6dCnagUgQ6LiSX0jzviZ8LtZM,4901
|
574
|
+
lusid/models/merger_event.py,sha256=4ccwLdoKowb9163f7-Qy7iHduuan5CbXM8EyNS4idYE,10982
|
574
575
|
lusid/models/metric_value.py,sha256=QycljuRptuyuEisuUKhJ9kSSlDPJrAykErN9wPZ-x7o,2187
|
575
576
|
lusid/models/model_options.py,sha256=MaLJVMOfpgwL_ZLIIrLbLwpC1lhZKNkzMOGlFlVFgSM,4202
|
576
577
|
lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
|
@@ -587,7 +588,7 @@ lusid/models/numeric_comparison_type.py,sha256=WGvpUP3x3ZPAuDiZjfQquJU6GoqIpubmm
|
|
587
588
|
lusid/models/opaque_dependency.py,sha256=Ht0hyAe6RncSF7vqTkGIg-YAycmNarb9ipyrlha_t_M,3778
|
588
589
|
lusid/models/opaque_market_data.py,sha256=-MZjF19x1jJRK3SNGqLE2u93eSFWgILoHQZMVQe1FBg,5168
|
589
590
|
lusid/models/opaque_model_options.py,sha256=kafN8F0SG-pjGN5yf--z1lBXyazMRYkrUI2saTfWCJY,3298
|
590
|
-
lusid/models/open_event.py,sha256=
|
591
|
+
lusid/models/open_event.py,sha256=1HklMZYq4kOZBaldcyhtQSbrnsoUDqWIHN-ytjYqxXw,4835
|
591
592
|
lusid/models/operand_type.py,sha256=Loz7v9RxLu3rlHgcyZr3XtTkPNFLdBvST0D-YesPnHo,648
|
592
593
|
lusid/models/operation.py,sha256=LtqUFww2hQy0sa9kdCpHPz3XSvtHxqsWtRKjRDku2TA,2516
|
593
594
|
lusid/models/operation_type.py,sha256=kUOhDAUWv4sYAaZwRlXwaowlr_jBw9uUmsW1ffRsMv8,644
|
@@ -622,7 +623,7 @@ lusid/models/order_instruction_request.py,sha256=69JFcMA3Aju-lzjGVH0h3fzlcvjnjVd
|
|
622
623
|
lusid/models/order_instruction_set_request.py,sha256=QucOY45KZ2qGKFeSn4MIFAm9lmRdKVjCTYtRvkFXNDU,2764
|
623
624
|
lusid/models/order_request.py,sha256=hOwerLbLdwdGW4bbETyml3ecg4wdNKvtnRefq6wPk1U,7833
|
624
625
|
lusid/models/order_set_request.py,sha256=RfOrLNJ67eLBKScPgm-eQhO0Nc0QjhO243d_u4qCfmA,2716
|
625
|
-
lusid/models/order_update_request.py,sha256=
|
626
|
+
lusid/models/order_update_request.py,sha256=LPzAIagtNnYs_1-Su1arQsKxAhL4mzGiH3ZOQI7a2y0,5139
|
626
627
|
lusid/models/otc_confirmation.py,sha256=OQF6QzTdyya99HApPCZaF3rkcnSztw4GHkL-qdGh-A4,2419
|
627
628
|
lusid/models/output_transaction.py,sha256=Jqbq3wjB-5OIhWM5eR2CE2nRuk7C8tkUP2-L1wORIos,13905
|
628
629
|
lusid/models/output_transition.py,sha256=1K7llvbd7xO0aesRTbK4AFFGn_V6ZsSyWh2o8wQrTt8,3985
|
@@ -778,7 +779,7 @@ lusid/models/quote_id.py,sha256=dPe08swumG6Hc4Rk2p2YstGQafjJRcdQTF78EqYZEPk,2419
|
|
778
779
|
lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
|
779
780
|
lusid/models/quote_series_id.py,sha256=Y6Gvn6CFkbs2Rok7Cy2OxRetg4OCdhPPIzg7PlyzYGA,6006
|
780
781
|
lusid/models/quote_type.py,sha256=18LUYnfqUvhGJ0utX4QZIDjmZGXxHT1_3dooUPVi5OI,1088
|
781
|
-
lusid/models/raw_vendor_event.py,sha256=
|
782
|
+
lusid/models/raw_vendor_event.py,sha256=pf0Og1Tm9TXAG8rq_yG427fqejtOStObhSyEaJOKdhg,5715
|
782
783
|
lusid/models/re_open_period_diary_entry_request.py,sha256=CcQqX5ekcLT_XTdWFJGZAmNQ2I5NMpzkwoLvfdoJ4X0,2792
|
783
784
|
lusid/models/realised_gain_loss.py,sha256=SqOAkbqLzwVkwmV4V4kFRLB6n55CJJhIfSDVK7xRHvg,7190
|
784
785
|
lusid/models/recipe_block.py,sha256=HDA6kexcMXEZXYEknTdRhyTNXi44WOmE1KtadUkVDC0,2848
|
@@ -818,7 +819,7 @@ lusid/models/relationship_definition.py,sha256=npRAIrrwG26GYoljTFDrB-vpd4fQun7oC
|
|
818
819
|
lusid/models/relative_date_offset.py,sha256=vjd-yELXhcUmdNyv7UqEaml_-nb2VsDpUeocHxT2Vmg,3016
|
819
820
|
lusid/models/repo.py,sha256=lupmudgi6BnaDOg0SAj_mScqXA4YWhYY1ys1R6TdRa8,11394
|
820
821
|
lusid/models/requested_changes.py,sha256=kyZ8eoZCDRaN15ZIrvoJ9BRRdy8Lf1jw1MJrhjUNduY,2467
|
821
|
-
lusid/models/reset_event.py,sha256=
|
822
|
+
lusid/models/reset_event.py,sha256=xRk1yj0i82GUI5tJBb8anG0jdaE-sfValdGCU93tPFw,6050
|
822
823
|
lusid/models/resource_id.py,sha256=c3SxFZVH_E3F6lCmIMntMd6EDaeCyAF33dSrSKA9jZ0,2064
|
823
824
|
lusid/models/resource_list_of_access_controlled_resource.py,sha256=_zb2c9apUlsdi8mX20q_M8YX-39EX_pBhNEwAECB3yA,4224
|
824
825
|
lusid/models/resource_list_of_access_metadata_value_of.py,sha256=J-gQGqolN8gYFQ1dYEE3adMqxTANz1g_2HE9Z0r5VbY,4395
|
@@ -900,7 +901,7 @@ lusid/models/result_value_dictionary.py,sha256=9Y_LcAKrU_RY84gNBujObXEx59DYgtixO
|
|
900
901
|
lusid/models/result_value_int.py,sha256=_tXdKUiNtsb10Wco7Hq8LCuUwab4HPyXBs3UQIkIrOE,4173
|
901
902
|
lusid/models/result_value_string.py,sha256=FCe2SsB9fZAvvjqRNuxQFTsa5sth7-3TlBdWujqO-c4,3881
|
902
903
|
lusid/models/result_value_type.py,sha256=CrOf0KEyx1VJIkAAyXjoGm8rcpSx26Gl_b5MgzZGqHU,1216
|
903
|
-
lusid/models/reverse_stock_split_event.py,sha256=
|
904
|
+
lusid/models/reverse_stock_split_event.py,sha256=CXCFOoUG7h8WAVJH9dLJMCWJss3-r3MqiMIMzyY0oS0,6544
|
904
905
|
lusid/models/rounding_configuration.py,sha256=jpeBHvca82qlK64vSOkZD7azNRI3Z599lhpx66BKKcM,2297
|
905
906
|
lusid/models/rounding_configuration_component.py,sha256=bLKRyNkrImXApHRSxODZ0Kp6-mX-JK9ycdOIFdr45g4,2111
|
906
907
|
lusid/models/rounding_convention.py,sha256=wHP76MnZGN_2m25x7fRsNA6mkcCLmkHx-YSGSRRnrzk,3968
|
@@ -909,7 +910,7 @@ lusid/models/scaling_methodology.py,sha256=rP8s-CkaG3rZGG9E9MxCJu3NzbKKool_r_fB-
|
|
909
910
|
lusid/models/schedule.py,sha256=IQeymxyyU0fHANXmPICy6vUQ2sDC9KoyUk9U_X23wTU,4216
|
910
911
|
lusid/models/schedule_type.py,sha256=hdAqhI4A6L1z-Ipwd2xaecMiTCFqRN1Bz1Lc2BWXZTg,955
|
911
912
|
lusid/models/scope_definition.py,sha256=IUTgJoHwDqVhCWfnyGurk0zIhKN_C7JoltgIRvcSLVc,1907
|
912
|
-
lusid/models/scrip_dividend_event.py,sha256=
|
913
|
+
lusid/models/scrip_dividend_event.py,sha256=HAVOvgblMXBNhwfaFBempUpMmiew2Th5soYca8zEmSQ,7738
|
913
914
|
lusid/models/script_map_reference.py,sha256=lAT1UWlV1KaP5i4mTJFZDrm3Uw8HdxyvpA2ozl7lqFU,3357
|
914
915
|
lusid/models/security_election.py,sha256=tY1AkshueFnIgGzSpAmpK3gydlzIkU-JOFYW_T8p6zA,3429
|
915
916
|
lusid/models/security_offer_election.py,sha256=LIGdAJtyjY2dq58UAikfRTaogu321kDikLZfA4eKGmY,3000
|
@@ -937,7 +938,7 @@ lusid/models/sides_definition_request.py,sha256=dIwC8QWSo13i2TUv4KrpyAbo_fq-GxT7
|
|
937
938
|
lusid/models/simple_cash_flow_loan.py,sha256=9iHHvivjXERGxq5TlRj48zHzDmpjka83V11CvK0HS88,6343
|
938
939
|
lusid/models/simple_instrument.py,sha256=Cerk4RI9xGwP59xF19u0ar6JVMqHcEqC9mAysPCIlps,6849
|
939
940
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
940
|
-
lusid/models/spin_off_event.py,sha256=
|
941
|
+
lusid/models/spin_off_event.py,sha256=6pDsK_8C45IAX2SL4dwzbWfHuOUBVY4fTstQ4ylwkQ8,8659
|
941
942
|
lusid/models/staged_modification.py,sha256=SMPrCbKed3JZ8Sv5qOzdCY_S41tA37PcO5jv2QZ7ij8,9179
|
942
943
|
lusid/models/staged_modification_decision.py,sha256=IUIpOwYjk41vLP_nMWDzZgI354cCtM9L6Yrf-K_DP4s,3544
|
943
944
|
lusid/models/staged_modification_decision_request.py,sha256=6PlH7coUQUIJe1-2GcwpatO3tpcqHIBelpgrd_BZ8qQ,2257
|
@@ -951,8 +952,8 @@ lusid/models/staging_rule_approval_criteria.py,sha256=gkdB2pNgVE4-LvE6-P-QrLnT7z
|
|
951
952
|
lusid/models/staging_rule_match_criteria.py,sha256=_RxCyvulK3necsQz6LI7YacbSZAktEN5cITthxm9F-w,3561
|
952
953
|
lusid/models/staging_rule_set.py,sha256=05h5vV_9s3V2MYoH7o1K8pmjlUq15jJSsmyJ5ObRyKs,4896
|
953
954
|
lusid/models/step_schedule.py,sha256=1xCC_C_GzTIOY8GPUIaF75YoieJ6fwV4qQFQHTsJypg,4580
|
954
|
-
lusid/models/stock_dividend_event.py,sha256=
|
955
|
-
lusid/models/stock_split_event.py,sha256=
|
955
|
+
lusid/models/stock_dividend_event.py,sha256=iZqpXO7Bv63B0i-K4C0Jdzz5pZFuZUXhQd9KpOn-kSA,6540
|
956
|
+
lusid/models/stock_split_event.py,sha256=zmLC_PSmNrz1rZQuyX6I5ym06rqIB09q0Pt3JRKdl5U,7720
|
956
957
|
lusid/models/stream.py,sha256=TGFloyewF3hi9RLyg0K3z13zxgvqAlHt46_AJuP9l7E,2865
|
957
958
|
lusid/models/string_comparison_type.py,sha256=4_CrV7WlDTrgAR866IyYXJZyVUXSNHBn7YrRdyiWKj0,799
|
958
959
|
lusid/models/string_compliance_parameter.py,sha256=_DVIosVMDhLYoONZUcMuIre5Ku8JAfIWjHB_okBu-DU,5318
|
@@ -961,6 +962,8 @@ lusid/models/string_list_compliance_parameter.py,sha256=bgph3OjWNEPR8OuLyJjrZGz9
|
|
961
962
|
lusid/models/structured_result_data.py,sha256=54I81CqBkq875kkEX3-gjGf2k9t23D62eCzefY-sek4,3744
|
962
963
|
lusid/models/structured_result_data_id.py,sha256=R15RxvxzgMy9R4zW0Ya1fSaYpMsXSijMDXiKTzGPAoM,4411
|
963
964
|
lusid/models/sub_holding_key_value_equals.py,sha256=2puONsExwFEYItLhbzwdwo-C2B5VVRYfJwbcDviclDg,3498
|
965
|
+
lusid/models/swap_cash_flow_event.py,sha256=nS7F4Jz82f4wgnffZ0x3QVzfXJUGcxHmPORovpuzI40,5608
|
966
|
+
lusid/models/swap_principal_event.py,sha256=arrtD5OEeuycRJFprwmYK7YO22hxZUPXz6-lvK9dDvs,5612
|
964
967
|
lusid/models/target_tax_lot.py,sha256=0rexGWPhEdOaj5_Z6OLxb-7AVTMYL4PfaI_Xcw5ZLm8,4296
|
965
968
|
lusid/models/target_tax_lot_request.py,sha256=UwhPoC9hMlbjBZ3dL28Yq2orn1v3vJ7eLctnEGkjKy4,4290
|
966
969
|
lusid/models/tax_rule.py,sha256=Mwc712YrMyeqXxJB6aUgNjCxy872or0_dtoNUZFNOBw,3530
|
@@ -1004,7 +1007,7 @@ lusid/models/transaction_type_movement.py,sha256=eG4MQrMi0P_ihxOcfsqPAnkYuOmwbho
|
|
1004
1007
|
lusid/models/transaction_type_property_mapping.py,sha256=2fmP3IJH-44GXE5-jt4Fd55xQscWTrEa76yjQJIUs_4,3249
|
1005
1008
|
lusid/models/transaction_type_request.py,sha256=tuoF4_cUe0KLjF4FN_un_wGtraNfJAXoNrfudvA0zIc,5121
|
1006
1009
|
lusid/models/transactions_reconciliations_response.py,sha256=ogcMW8W4vgIDqEdggwJDA0tH-SInrqIFCLved7SZ-VM,3083
|
1007
|
-
lusid/models/transition_event.py,sha256=
|
1010
|
+
lusid/models/transition_event.py,sha256=TOyNu57ZKXUgaW1sfBDKbZveLsG5nhNP379TP-pO1fM,7060
|
1008
1011
|
lusid/models/translate_entities_inlined_request.py,sha256=ZhGACGzNSDIeQwIN8iQniclFypCWEl4RsMf_NEKB3nU,3576
|
1009
1012
|
lusid/models/translate_entities_request.py,sha256=aCRconXgNBLgdPzKRK09t_jMoHCkkOIpktI0KyhKtDM,3790
|
1010
1013
|
lusid/models/translate_entities_response.py,sha256=nWI03db6VRy-SLlcW1i8l4R1uNGERNPUeIDLSexBrrc,4458
|
@@ -1019,7 +1022,7 @@ lusid/models/translation_script.py,sha256=j-UdU56HTuGFwrkTaJiq0Z6KFgE9GVGG9a9_jX
|
|
1019
1022
|
lusid/models/translation_script_id.py,sha256=5JWxbDjiPVpsDZuz8RNmiC3JkVGOhodnLc2_NNmw17Q,3279
|
1020
1023
|
lusid/models/trial_balance.py,sha256=Kv-qKEzG4UPxyYsY9As1LqojQ2BL5y4ijw6DuNkZvno,6216
|
1021
1024
|
lusid/models/trial_balance_query_parameters.py,sha256=u9ivqLRFnZMsHpAqEIX7RFkK3nkEVkgMR0VW1r2EE7Y,4950
|
1022
|
-
lusid/models/trigger_event.py,sha256=
|
1025
|
+
lusid/models/trigger_event.py,sha256=FUETBlpaEPUxAWMgbnATr-4Bna_5__4iSAwCK1jjM1k,5873
|
1023
1026
|
lusid/models/typed_resource_id.py,sha256=wu3n9oSrautEnoz1iqHvX8I6Uu_PO0ETQQObHW01PD8,3908
|
1024
1027
|
lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
|
1025
1028
|
lusid/models/unitisation_data.py,sha256=SNaV2LP5zHqLol4huDJyIFYu1knhHdB9O75oUfWkJds,2550
|
@@ -1128,6 +1131,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1128
1131
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1129
1132
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1130
1133
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
1131
|
-
lusid_sdk-2.1.
|
1132
|
-
lusid_sdk-2.1.
|
1133
|
-
lusid_sdk-2.1.
|
1134
|
+
lusid_sdk-2.1.363.dist-info/METADATA,sha256=KXFBGlIMSrUsuiOgZs_IGCZfqcpsnjXIpW-JUphdDqo,193947
|
1135
|
+
lusid_sdk-2.1.363.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1136
|
+
lusid_sdk-2.1.363.dist-info/RECORD,,
|
File without changes
|