lusid-sdk 2.1.423__py3-none-any.whl → 2.1.429__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 +4 -0
- lusid/configuration.py +1 -1
- lusid/models/__init__.py +4 -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/cds_credit_event.py +3 -3
- lusid/models/cdx_credit_event.py +3 -3
- lusid/models/close_event.py +3 -3
- lusid/models/credit_premium_cash_flow_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/mbs_coupon_event.py +97 -0
- lusid/models/mbs_principal_event.py +97 -0
- lusid/models/merger_event.py +3 -3
- lusid/models/open_event.py +3 -3
- 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 +3 -3
- lusid/models/swap_principal_event.py +3 -3
- lusid/models/transition_event.py +3 -3
- lusid/models/trigger_event.py +3 -3
- {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.429.dist-info}/METADATA +3 -1
- {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.429.dist-info}/RECORD +44 -42
- {lusid_sdk-2.1.423.dist-info → lusid_sdk-2.1.429.dist-info}/WHEEL +0 -0
lusid/models/spin_off_event.py
CHANGED
@@ -37,15 +37,15 @@ class SpinOffEvent(InstrumentEvent):
|
|
37
37
|
cost_factor: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="costFactor", description="Optional. The fraction of cost that is transferred from the existing shares to the new shares.")
|
38
38
|
fractional_units_cash_price: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fractionalUnitsCashPrice", description="Optional. Used in calculating cash-in-lieu of fractional shares.")
|
39
39
|
fractional_units_cash_currency: Optional[StrictStr] = Field(None, alias="fractionalUnitsCashCurrency", description="Optional. Used in calculating cash-in-lieu of fractional shares.")
|
40
|
-
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")
|
40
|
+
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")
|
41
41
|
additional_properties: Dict[str, Any] = {}
|
42
42
|
__properties = ["instrumentEventType", "announcementDate", "exDate", "recordDate", "paymentDate", "newInstrument", "unitsRatio", "costFactor", "fractionalUnitsCashPrice", "fractionalUnitsCashCurrency"]
|
43
43
|
|
44
44
|
@validator('instrument_event_type')
|
45
45
|
def instrument_event_type_validate_enum(cls, value):
|
46
46
|
"""Validates the enum"""
|
47
|
-
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'):
|
48
|
-
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')")
|
47
|
+
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'):
|
48
|
+
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')")
|
49
49
|
return value
|
50
50
|
|
51
51
|
class Config:
|
@@ -34,15 +34,15 @@ class StockDividendEvent(InstrumentEvent):
|
|
34
34
|
fractional_units_cash_price: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fractionalUnitsCashPrice", description="The cash price paid in lieu of fractionalUnits.")
|
35
35
|
fractional_units_cash_currency: Optional[StrictStr] = Field(None, alias="fractionalUnitsCashCurrency", description="The currency of the cash paid in lieu of fractionalUnits.")
|
36
36
|
units_ratio: UnitsRatio = Field(..., alias="unitsRatio")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent")
|
38
38
|
additional_properties: Dict[str, Any] = {}
|
39
39
|
__properties = ["instrumentEventType", "announcementDate", "exDate", "paymentDate", "recordDate", "fractionalUnitsCashPrice", "fractionalUnitsCashCurrency", "unitsRatio"]
|
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', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent')")
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent')")
|
46
46
|
return value
|
47
47
|
|
48
48
|
class Config:
|
@@ -34,15 +34,15 @@ class StockSplitEvent(InstrumentEvent):
|
|
34
34
|
announcement_date: Optional[datetime] = Field(None, alias="announcementDate", description="Date the stock split was announced.")
|
35
35
|
fractional_units_cash_price: Optional[Union[StrictFloat, StrictInt]] = Field(None, alias="fractionalUnitsCashPrice", description="The cash price per unit paid in lieu when fractional units can not be distributed.")
|
36
36
|
fractional_units_cash_currency: Optional[StrictStr] = Field(None, alias="fractionalUnitsCashCurrency", description="The currency of the cash paid in lieu of fractional units.")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent")
|
38
38
|
additional_properties: Dict[str, Any] = {}
|
39
39
|
__properties = ["instrumentEventType", "paymentDate", "exDate", "unitsRatio", "recordDate", "announcementDate", "fractionalUnitsCashPrice", "fractionalUnitsCashCurrency"]
|
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', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent')")
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent')")
|
46
46
|
return value
|
47
47
|
|
48
48
|
class Config:
|
@@ -30,15 +30,15 @@ class SwapCashFlowEvent(InstrumentEvent):
|
|
30
30
|
payment_date: datetime = Field(..., alias="paymentDate", description="The payment date of the cashflow.")
|
31
31
|
currency: StrictStr = Field(..., description="The currency in which the cashflow is paid.")
|
32
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent")
|
34
34
|
additional_properties: Dict[str, Any] = {}
|
35
35
|
__properties = ["instrumentEventType", "exDate", "paymentDate", "currency", "cashFlowPerUnit"]
|
36
36
|
|
37
37
|
@validator('instrument_event_type')
|
38
38
|
def instrument_event_type_validate_enum(cls, value):
|
39
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent')")
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent')")
|
42
42
|
return value
|
43
43
|
|
44
44
|
class Config:
|
@@ -30,15 +30,15 @@ class SwapPrincipalEvent(InstrumentEvent):
|
|
30
30
|
payment_date: datetime = Field(..., alias="paymentDate", description="The payment date of the principal.")
|
31
31
|
currency: StrictStr = Field(..., description="The currency in which the principal is paid.")
|
32
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent")
|
34
34
|
additional_properties: Dict[str, Any] = {}
|
35
35
|
__properties = ["instrumentEventType", "exDate", "paymentDate", "currency", "principalPerUnit"]
|
36
36
|
|
37
37
|
@validator('instrument_event_type')
|
38
38
|
def instrument_event_type_validate_enum(cls, value):
|
39
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent')")
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent')")
|
42
42
|
return value
|
43
43
|
|
44
44
|
class Config:
|
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, SwapCashFlowEvent, SwapPrincipalEvent, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent")
|
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, CreditPremiumCashFlowEvent, CdsCreditEvent, CdxCreditEvent, MbsCouponEvent, MbsPrincipalEvent")
|
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', 'SwapCashFlowEvent', 'SwapPrincipalEvent', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent')")
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent'):
|
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', 'CreditPremiumCashFlowEvent', 'CdsCreditEvent', 'CdxCreditEvent', 'MbsCouponEvent', 'MbsPrincipalEvent')")
|
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, 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")
|
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', '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'):
|
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')")
|
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.429
|
4
4
|
Summary: LUSID API
|
5
5
|
Home-page: https://github.com/finbourne/lusid-sdk-python
|
6
6
|
License: MIT
|
@@ -1127,6 +1127,8 @@ Class | Method | HTTP request | Description
|
|
1127
1127
|
- [MarketQuote](docs/MarketQuote.md)
|
1128
1128
|
- [MatchCriterion](docs/MatchCriterion.md)
|
1129
1129
|
- [MaturityEvent](docs/MaturityEvent.md)
|
1130
|
+
- [MbsCouponEvent](docs/MbsCouponEvent.md)
|
1131
|
+
- [MbsPrincipalEvent](docs/MbsPrincipalEvent.md)
|
1130
1132
|
- [MergerEvent](docs/MergerEvent.md)
|
1131
1133
|
- [MetricValue](docs/MetricValue.md)
|
1132
1134
|
- [ModelOptions](docs/ModelOptions.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
lusid/__init__.py,sha256=
|
1
|
+
lusid/__init__.py,sha256=wwxhPwkXk9tFDCh6ndUasGStkIWmNgE6-5RnZHlZ24g,121668
|
2
2
|
lusid/api/__init__.py,sha256=69WifPX1Ef8HqrTx08uOfs02M3Z3hTs59hxAchzy_pE,5846
|
3
3
|
lusid/api/abor_api.py,sha256=aS7zxspfuayE2bd-ZCrOQApXos86_IjIutJigVwgZ4M,158748
|
4
4
|
lusid/api/abor_configuration_api.py,sha256=G2bKPtMYOZ2GhUrg-nPJtCa9XIZdZYK7oafcbJWDMP8,64033
|
@@ -70,7 +70,7 @@ lusid/api/translation_api.py,sha256=xTAaKEW96JTDIZBXCjxSguCa7Gz4oVd5jdObUE2egwo,
|
|
70
70
|
lusid/api/workspace_api.py,sha256=GtjOpr7UDgtXa3KmlwmFX4LJEa5dg53qzTyfy-FY0d4,192167
|
71
71
|
lusid/api_client.py,sha256=dF6l9RAsdxdQjf6Qn4ny6LB-QXlJmsscWiozCvyyBFA,30709
|
72
72
|
lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
|
73
|
-
lusid/configuration.py,sha256=
|
73
|
+
lusid/configuration.py,sha256=Idgi-Vo_Mfcy6RPCca_jf8v94ObhCdg-AjH4xlRytxw,14733
|
74
74
|
lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
|
75
75
|
lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
|
76
76
|
lusid/extensions/api_client.py,sha256=Ob06urm4Em3MLzgP_geyeeGsPCkU225msW_1kpIeABM,30567
|
@@ -84,7 +84,7 @@ lusid/extensions/rest.py,sha256=tjVCu-cRrYcjp-ttB975vebPKtBNyBWaeoAdO3QXG2I,1269
|
|
84
84
|
lusid/extensions/retry.py,sha256=orBJ1uF1iT1IncjWX1iGHVqsCgTh0SBe9rtiV_sPnwk,11564
|
85
85
|
lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
|
86
86
|
lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
|
87
|
-
lusid/models/__init__.py,sha256=
|
87
|
+
lusid/models/__init__.py,sha256=Zw-qkPX0jxEuxsK_cevGxxEOpJJETPczy_VcQyNTkUM,114790
|
88
88
|
lusid/models/a2_b_breakdown.py,sha256=Txi12EIQw3mH6NM-25QkOnHSQc3BVAWrP7yl9bZswSY,2947
|
89
89
|
lusid/models/a2_b_category.py,sha256=k6NPAACi0CUjKyhdQac4obQSrPmp2PXD6lkAtCnyEFM,2725
|
90
90
|
lusid/models/a2_b_data_record.py,sha256=zKGS2P4fzNpzdcGJiSIpkY4P3d_jAcawYfyuPCDeQgk,9737
|
@@ -104,7 +104,7 @@ lusid/models/account.py,sha256=6sKzuazRI0NIs6HOu3y7cy5omeagVVCVxlILA8EGDQE,5124
|
|
104
104
|
lusid/models/account_properties.py,sha256=fqKIfQ7tbAwodW8tZu86JTapAW5lVNNMonB6F2C1s5g,4272
|
105
105
|
lusid/models/accounting_method.py,sha256=UC5QH3NF4X8MZoAxXfyb8HYDt4JghXoyFytj1Bx9zN4,981
|
106
106
|
lusid/models/accounts_upsert_response.py,sha256=qHHsFTkMqhIufYG3RBvXB1YimBluJREx-iq7bd2DL50,4120
|
107
|
-
lusid/models/accumulation_event.py,sha256=
|
107
|
+
lusid/models/accumulation_event.py,sha256=5jlSlDyxV3Po1L0mO6v3_DbOzkKM6Iedj_rwzG2hYGg,6369
|
108
108
|
lusid/models/action_id.py,sha256=NuJ7So7BAckiGCTpPdnwCmGVUEtsImy8r7PFLRYb6Ok,2057
|
109
109
|
lusid/models/add_business_days_to_date_request.py,sha256=AfWmdr91A1Wpf0yT6CEEymkHYLXYha5Lll3EXe8FDtE,2640
|
110
110
|
lusid/models/add_business_days_to_date_response.py,sha256=wWo01x8xabbdMWzv73T7nRNBsKi1LYXJWTSaj4VCnWs,2013
|
@@ -135,7 +135,7 @@ lusid/models/allocation.py,sha256=sC9oB2NMNWtZt0wnh7wMzQXw6OQxaeHaCfLxNWO-JjM,11
|
|
135
135
|
lusid/models/allocation_request.py,sha256=GSGe0qAgCArKH1p7swa2a-4IG-w_hLwn_Ntseyh9dW0,9777
|
136
136
|
lusid/models/allocation_service_run_response.py,sha256=qOd5aKAwcjpCh2q5zTxWdGD5FitMpB86hmB89mC2zlo,3454
|
137
137
|
lusid/models/allocation_set_request.py,sha256=41ePNu4AX5sFtGER31_V2PFlqlqen1TkMsIAmcdmvd8,2851
|
138
|
-
lusid/models/amortisation_event.py,sha256=
|
138
|
+
lusid/models/amortisation_event.py,sha256=QsxdrjwIqqOG_-Tgdt2P3PuOLrdQOTsbfTujfK43ZxY,6006
|
139
139
|
lusid/models/amortisation_rule.py,sha256=-82zbA7s0GE49EWBZ6yAsfehhN64j6z-nnOi4jTL1CE,3638
|
140
140
|
lusid/models/amortisation_rule_set.py,sha256=ExFKfMCGVF2-MYZfT_GrCwgsP1aC8vc5R6HI63wLe9E,5356
|
141
141
|
lusid/models/amount.py,sha256=2Yg4t7pUw1LBK2OFzXY-fesXvIGejXMO2dvriNHABZg,1793
|
@@ -166,9 +166,9 @@ lusid/models/blocked_order_request.py,sha256=K8u2BlSw00h5xKcyKrHvA48hesX8WW9x27x
|
|
166
166
|
lusid/models/bond.py,sha256=9NmvVk46a7PsiLa5Ji6jbU9pepXtF_1hOlfkvXuWGpk,12351
|
167
167
|
lusid/models/bond_conversion_entry.py,sha256=DFS635pxCi5hsrfOfOxH6gWlAzUDD9D7u75NPCLZF6Q,3549
|
168
168
|
lusid/models/bond_conversion_schedule.py,sha256=ETxUYhDRyycn_LyLd2P8dT0bHS-Z1XrCYIQdc-vWm8k,7658
|
169
|
-
lusid/models/bond_coupon_event.py,sha256=
|
170
|
-
lusid/models/bond_default_event.py,sha256=
|
171
|
-
lusid/models/bond_principal_event.py,sha256=
|
169
|
+
lusid/models/bond_coupon_event.py,sha256=CU2eGLArpr_o6L9GLjRogFzW5uQscG1hoHTnpLhEOVg,5783
|
170
|
+
lusid/models/bond_default_event.py,sha256=ViacSUIgFkvebv6u52poPA7YPJQsEoLbJTUvseakeuo,5261
|
171
|
+
lusid/models/bond_principal_event.py,sha256=1hJ_iYZQ9rpJs14bFOmTFq-rXEMkOos-48xmYi0hkMk,5818
|
172
172
|
lusid/models/book_transactions_request.py,sha256=fPB779I5p_8Iv7VCrHsGId-5WhgSer6yNAmZpoDBksY,3719
|
173
173
|
lusid/models/book_transactions_response.py,sha256=4duW5WZ1cspArgEXKbm2eWXROYkJ1evRJK6QmvhXNMg,3537
|
174
174
|
lusid/models/bool_compliance_parameter.py,sha256=ltt-fC0CalevZ0Akz96t0C5KoDKwbJqiKX5yD1pjCDw,5283
|
@@ -188,24 +188,24 @@ lusid/models/cancel_placements_response.py,sha256=xe43QiiMvapew4BvR1C3wj5tYgn-zL
|
|
188
188
|
lusid/models/cancelled_order_result.py,sha256=ZAwAhNd7IouFTPRwwYvAflZqlYkbweSttNmJ6cHoIkw,2187
|
189
189
|
lusid/models/cancelled_placement_result.py,sha256=eW3lgoyFakoGKcFSp3WN11bpuJyJun9jm8rVS4hdxwg,3127
|
190
190
|
lusid/models/cap_floor.py,sha256=njXRS6hQ-0fmlpaX7VVzLaxB5NpJHTYn_4HMp9e6BSA,6051
|
191
|
-
lusid/models/capital_distribution_event.py,sha256=
|
191
|
+
lusid/models/capital_distribution_event.py,sha256=7JbiaIaQ3wyAyg87QsbM9J-h-HPwpJnLKTpJg34JoyM,7121
|
192
192
|
lusid/models/cash.py,sha256=2Cr5kt0P4mlmsMRwtiFNaMBHwa1YSDGcwhR8XrdWi18,4934
|
193
193
|
lusid/models/cash_and_security_offer_election.py,sha256=9xxHftE8QRdsizLEXCyvxFdkPpm9KU3fxz8WNjJv430,3933
|
194
194
|
lusid/models/cash_dependency.py,sha256=zwUJWL1OvD_DRCBLNRunbtsw9vBRXcri3hMmlu3oXGI,4182
|
195
|
-
lusid/models/cash_dividend_event.py,sha256=
|
195
|
+
lusid/models/cash_dividend_event.py,sha256=UOnjJzpUCpcQb6mOG0G2S7DfWHKAFWfdYvZnqhK0Sik,7072
|
196
196
|
lusid/models/cash_election.py,sha256=S4WDmP90O1Q-M_PgOCkUCZ6qixZwBz3DF0HRpUMwD1I,3882
|
197
|
-
lusid/models/cash_flow_event.py,sha256=
|
197
|
+
lusid/models/cash_flow_event.py,sha256=CyOum6HI9pP1-36scKRCJ2lGlTE4KnhxuSUH61xMgoY,5781
|
198
198
|
lusid/models/cash_flow_lineage.py,sha256=Y46Eg39U0pkAyCez2xzh87zHFu-3R8GAShjiEUyao78,4785
|
199
199
|
lusid/models/cash_flow_value.py,sha256=McLO_czOfxxoX6QrOHT-WJZh7pB5nzC--nxSg1KKcgo,5099
|
200
200
|
lusid/models/cash_flow_value_set.py,sha256=_YLdVEB8NRztQQ2TsQk0hDWR8wad6hRuO-5MTuOtw_Y,4424
|
201
201
|
lusid/models/cash_ladder_record.py,sha256=K7-Mv7vzTMs-n8nWJ21v8cMrUud01GRb5643337Wkos,2285
|
202
202
|
lusid/models/cash_offer_election.py,sha256=qefe020_tlp2w0Q1ohYzAC-q-t4m7UsRYl_mOfJVIAs,3011
|
203
203
|
lusid/models/cash_perpetual.py,sha256=zI2z5YqN-wEhpJvBmjAsAbwIbaGNfbktDQiSlyaGW3c,5254
|
204
|
-
lusid/models/cds_credit_event.py,sha256=
|
204
|
+
lusid/models/cds_credit_event.py,sha256=Krp6MaAW5kDxrSm1yx8Lmiqz4JiTgSjlS4XeESsSEx0,6278
|
205
205
|
lusid/models/cds_flow_conventions.py,sha256=_WpM6p1v-kxjbzRQu7DzK3cJNJqyr_rRkgjTEaRic1Y,8161
|
206
206
|
lusid/models/cds_index.py,sha256=uZGbPTZ6J6GTzHqtK42cq2Pk4i1IOduNKoAqSk9WYUI,8186
|
207
207
|
lusid/models/cds_protection_detail_specification.py,sha256=k0mkP4WGJFjfouhI6WtCnR4y2rx2yFwBelO8D33lbaE,3213
|
208
|
-
lusid/models/cdx_credit_event.py,sha256=
|
208
|
+
lusid/models/cdx_credit_event.py,sha256=T9-gzwodb4iDOZee3XXE1XONXsJ6iPON9e2xA2yqb2E,7038
|
209
209
|
lusid/models/change.py,sha256=QHC1wtZL_TXDfSertnsg-tNRpkHkcbk5wk8O5rOjby4,5076
|
210
210
|
lusid/models/change_history.py,sha256=0T4tsDtXkFe2_l52MW6pomP3tpsZT3BFmZivucMvj1U,4251
|
211
211
|
lusid/models/change_history_action.py,sha256=LJipvCPce31vtmb4j7EQBaoolJVrf8wycx7lim33Kzg,702
|
@@ -222,7 +222,7 @@ lusid/models/cleardown_module_response.py,sha256=SjHPnXa8sgJmEniGDeZu4wxkNQke5SJ
|
|
222
222
|
lusid/models/cleardown_module_rule.py,sha256=ggzdjEZXxEAZjOL-zCZH7z05IkpBx4hJ60rKDc_QzhA,3505
|
223
223
|
lusid/models/cleardown_module_rules_updated_response.py,sha256=gVxjkztmGxvnHaGMQjmrL8hw0N7GhJKRpujbLdSk6T8,4316
|
224
224
|
lusid/models/client.py,sha256=C-cuudkA8GKpa3GKnbetJFu8kE5E88Ap1h_72UHqKVA,1980
|
225
|
-
lusid/models/close_event.py,sha256=
|
225
|
+
lusid/models/close_event.py,sha256=UWgglVKMPs9hdfCJAFRabIxrdyB9-OBjpYUTwIXdWL0,5463
|
226
226
|
lusid/models/close_period_diary_entry_request.py,sha256=sD2X7MALlyW6tCr7Y2voUINkNVqF6YpcYdkMsQubaa0,6490
|
227
227
|
lusid/models/complete_portfolio.py,sha256=_y1LTAZ7pErx7ioQu20WLK_l3sy55JRoJo8c4yZb3jE,7827
|
228
228
|
lusid/models/complete_relation.py,sha256=T1Wd-knJ0m60ZV82FRinBboqaj0XioTUirK43ozT1q4,3908
|
@@ -310,7 +310,7 @@ lusid/models/create_trade_tickets_response.py,sha256=hMgaSmMWyWbpp2SQqg6p9fnMrUj
|
|
310
310
|
lusid/models/create_transaction_portfolio_request.py,sha256=DCCeyEitHhbNkavvpWhZry_oQ6cMxby8i7TbY1JKXVo,11094
|
311
311
|
lusid/models/create_unit_definition.py,sha256=hPfMi0Wew-HYzTQEaZ_wfDnN1dKMW6KYGB8kgyXjwlU,3418
|
312
312
|
lusid/models/credit_default_swap.py,sha256=VO2Q1rndHr376Q9mBZ80afCCPpDdxNFCmFqTMnsfhLw,8682
|
313
|
-
lusid/models/credit_premium_cash_flow_event.py,sha256
|
313
|
+
lusid/models/credit_premium_cash_flow_event.py,sha256=-SEwiywLM1GCHAMDnNuRo_PwNialfUrrK-YIsBoSpME,6211
|
314
314
|
lusid/models/credit_rating.py,sha256=3EJjCwgdDT04iclq5OTBWughXAbXc9FkOtz-x7i5rks,3088
|
315
315
|
lusid/models/credit_spread_curve_data.py,sha256=N2gish4RNEdHNRwo8AceZbY5dPUtKy8Lt1WTRxrDHNw,7174
|
316
316
|
lusid/models/credit_support_annex.py,sha256=YFEtXS7mDojadeeJOfvfNVCBHjgkgBFbUMV0YA5bNtI,5420
|
@@ -371,8 +371,8 @@ lusid/models/diary_entry_request.py,sha256=kfhzj7BjdCxfFab4n4XA7Ua-jGZPo9TQWqulQ
|
|
371
371
|
lusid/models/discount_factor_curve_data.py,sha256=Xh3uEXruTb6oVMQoTkAoCGSGC9nBC-5WtjGfjWbD5TU,5522
|
372
372
|
lusid/models/discounting_dependency.py,sha256=jE2qCUrOKNXFviSm7dxV9qH8KZcMtzhL65KSeSPVZ1c,4377
|
373
373
|
lusid/models/discounting_method.py,sha256=MlWtNqjuA9R4G5hosNUyP5NgFDnzlOpVHgnRH44uo-k,734
|
374
|
-
lusid/models/dividend_option_event.py,sha256=
|
375
|
-
lusid/models/dividend_reinvestment_event.py,sha256=
|
374
|
+
lusid/models/dividend_option_event.py,sha256=H2zmDzyKJdqv0JHV2f9GP0GHk1WjrRkBLudraUCenfE,8116
|
375
|
+
lusid/models/dividend_reinvestment_event.py,sha256=hdI25JpFC9vl2xP720hL6n_ewhZujOC-iuIBmlDhZtQ,8002
|
376
376
|
lusid/models/economic_dependency.py,sha256=cl_ZetMATxLqsO4VRK8k9JuVDQWuhYwuBDuXW7X-1RU,6096
|
377
377
|
lusid/models/economic_dependency_type.py,sha256=tx37PkXssBSTW8Rqm1PN8XFEKR4lEkTgnLwL0EvMh3k,1290
|
378
378
|
lusid/models/economic_dependency_with_complex_market_data.py,sha256=2iTNQhxgay9BaToXvx2v7SDq8Mm4qWCvYEczUQn0Zsk,3051
|
@@ -398,10 +398,10 @@ lusid/models/exchange_traded_option_contract_details.py,sha256=kTmC8XarImx5iMSCm
|
|
398
398
|
lusid/models/execution.py,sha256=xgTGRwDwyKoIs2Pr1bO2gyqCZse_xbUX-FawwhMDgS8,8094
|
399
399
|
lusid/models/execution_request.py,sha256=QIRsZXIKhl_YftXWBWjaT1IZuvIzSi766FWAx7I6Qlc,6720
|
400
400
|
lusid/models/execution_set_request.py,sha256=CXGgbdH8abVfPqnUs4J1xR_mHI3byH4ES_T7IGDm0nM,2672
|
401
|
-
lusid/models/exercise_event.py,sha256=
|
401
|
+
lusid/models/exercise_event.py,sha256=N2TQFPTuliGRTpbkGnAsw3iii24_Uq6g7hp6aALlew8,6011
|
402
402
|
lusid/models/exotic_instrument.py,sha256=S_6ClvoShzX-aMizXUufaQqpZ0aNSBQdRL8-r-DeFnA,5776
|
403
403
|
lusid/models/expanded_group.py,sha256=e1fIiusdlI_VtjJlF4g5O_yg6A_5VDOg2LaW94CUyJU,5931
|
404
|
-
lusid/models/expiry_event.py,sha256
|
404
|
+
lusid/models/expiry_event.py,sha256=-JCiSBlP-Ln051nmN4sBu7lsMvfdBQb0IoBwvEx4jPk,5177
|
405
405
|
lusid/models/fee.py,sha256=jRnyJyHwVxLiL6lD9HE8rEUfPqh79u9Tf7bXRgJVq6I,10676
|
406
406
|
lusid/models/fee_accrual.py,sha256=4u5DYJpuu0mwhpXafCRA1mHCdDhNMjwpuTMllxUiqkI,4319
|
407
407
|
lusid/models/fee_properties.py,sha256=Q92whmRw6aIwyxsgLVF9vntTY5WLwtrDdJMw9sSNoEQ,4232
|
@@ -445,7 +445,7 @@ lusid/models/fund_valuation_point_data.py,sha256=iAuj4b7Kz8Ty67myYntjROcZBkhckc5
|
|
445
445
|
lusid/models/funding_leg.py,sha256=b_0D_GqQCPqOllNvb6VSqyjBO4H2v7YYefAj7joTsBI,7455
|
446
446
|
lusid/models/funding_leg_options.py,sha256=_GxHVcvcsd96OaNcb7iHs43UUfrwVno_x2cNowUSwjw,3515
|
447
447
|
lusid/models/future.py,sha256=9jcXTZJxaijpVAz-8-65Jv9yig4qYQEeU2z9oRdEPaU,9084
|
448
|
-
lusid/models/future_expiry_event.py,sha256=
|
448
|
+
lusid/models/future_expiry_event.py,sha256=nYcXavVl0kPitNQigMWgCMVUkMbJ2kitBfIo0qKRDLY,6065
|
449
449
|
lusid/models/futures_contract_details.py,sha256=xLxo1FvdHw0Ejup6-IllCpR40JRsKjR5wc7cV2DixNQ,8124
|
450
450
|
lusid/models/fx_conventions.py,sha256=hs2udXMqlr1OAwMZDgPjqF-NVDneZ-a8J8lrN90_d5g,2612
|
451
451
|
lusid/models/fx_dependency.py,sha256=KAxeXfKxJBPeXk42egQTkladphCeHa58jqOKFXiVAeU,5214
|
@@ -454,7 +454,7 @@ lusid/models/fx_forward_curve_by_quote_reference.py,sha256=KUwwMke3qyymP2UTTrfDu
|
|
454
454
|
lusid/models/fx_forward_curve_data.py,sha256=6xwJY_fAEVIbZyDVrbrgUR8YikalHiZ22ooDJHPH9tk,5758
|
455
455
|
lusid/models/fx_forward_model_options.py,sha256=jSnnHeRJ8oKL7To5qWHpVg-vu9k0zlAuZoJ4vHnZXPw,4864
|
456
456
|
lusid/models/fx_forward_pips_curve_data.py,sha256=h4E7tSAeTqLRaINpG_CCDdIvVMwk6hMCrjGNdb34j4Y,5885
|
457
|
-
lusid/models/fx_forward_settlement_event.py,sha256=
|
457
|
+
lusid/models/fx_forward_settlement_event.py,sha256=Wp0U1cufBmfT499qn-3tBvflBXJXcoKrK0Qhtt1kOZ0,9717
|
458
458
|
lusid/models/fx_forward_tenor_curve_data.py,sha256=S1kHnkg2Fpds9xDXzjLxBoUXGb70uDsEBg0zkNxfs1Q,7547
|
459
459
|
lusid/models/fx_forward_tenor_pips_curve_data.py,sha256=S8fQm_x1CiHXAQAMs4Pp7bczo7DWfUpRTzbhbs-r-zw,7645
|
460
460
|
lusid/models/fx_forwards_dependency.py,sha256=0ziw4k_SX5hMqWJdZ0pYxRVL2xWD7d0hLgFOHQqosR0,5238
|
@@ -523,8 +523,8 @@ lusid/models/inflation_index_conventions.py,sha256=I9uG6oCE8M5IHq63DZXvH1fI_5TzM
|
|
523
523
|
lusid/models/inflation_leg.py,sha256=TUdofB72xJkFsumuZ4KZxwMhD8P6ArIChosAKUpKX9M,9890
|
524
524
|
lusid/models/inflation_linked_bond.py,sha256=Y3RAsJrSm6XxvnezhzVrcJ_0mvSm-n_9tFczo-MgRlo,13899
|
525
525
|
lusid/models/inflation_swap.py,sha256=8Pv4AN-oYsJHAemq44Vh-XXPx6XBFtVG9V51DUZHbHk,6910
|
526
|
-
lusid/models/informational_error_event.py,sha256=
|
527
|
-
lusid/models/informational_event.py,sha256=
|
526
|
+
lusid/models/informational_error_event.py,sha256=PENLSO2g5byZ984B172yAFyLShqdSL9VviX_s9phnYg,5608
|
527
|
+
lusid/models/informational_event.py,sha256=KuK1HI281OwUEt9IfuWTUfeCSH9hPa_Ph6B3-19dFas,6621
|
528
528
|
lusid/models/inline_valuation_request.py,sha256=Qn5CwniPwvIDFzkF2GFubAyFFUkT2I9VK99q4mAHK2w,10449
|
529
529
|
lusid/models/inline_valuations_reconciliation_request.py,sha256=ifM58Y663WkSy5kgZCVxSkRxKDe4QpU6qSELGA25VGs,4749
|
530
530
|
lusid/models/input_transition.py,sha256=-ZYi6ocgtgDHyrJzVm04FvQSTO5Gn22Tx_wdY7wWKxg,2225
|
@@ -535,13 +535,13 @@ lusid/models/instrument_definition.py,sha256=WXHcbvKNS8x-seUaHBPW7462-bgc-mpUEKw
|
|
535
535
|
lusid/models/instrument_definition_format.py,sha256=yhFb5bjsk3u2aUYukxXfcN2m9BBGVI0Zw0z9vBmm5Rk,2854
|
536
536
|
lusid/models/instrument_delete_modes.py,sha256=pRnKhwXly5wA6KEnvvphzEBS6ThT-iuuhS4JFVEal3s,682
|
537
537
|
lusid/models/instrument_entity.py,sha256=Rb9jT5z_oGK9fiKWjuU6Xi6HnYZVa6gbaFA35KCMgyc,7488
|
538
|
-
lusid/models/instrument_event.py,sha256=
|
538
|
+
lusid/models/instrument_event.py,sha256=sdc8KxRB2b1tgqqMCn8CCDcigIrl2Zl3ea40ae4hPO4,8466
|
539
539
|
lusid/models/instrument_event_configuration.py,sha256=igoNv4Dvea9arqNFQXuwV_NcDUD0ZmeJ5b8_YKOGWyY,2797
|
540
540
|
lusid/models/instrument_event_holder.py,sha256=kbrQ_yd4X9THZo4oLdvB3HeUwJSmeVpOoIOBUy1o7fs,6994
|
541
541
|
lusid/models/instrument_event_instruction.py,sha256=dNjk_Z04hC303eClGP6b7VFRPjCvCx0dMDqAJ0OmD5k,6179
|
542
542
|
lusid/models/instrument_event_instruction_request.py,sha256=uDTvxy3TrTjrLCBl5G-zDEBWuSRYwtXJ_Bzys3NyuH0,3639
|
543
543
|
lusid/models/instrument_event_instructions_response.py,sha256=Wr4XI1bNMijF7h1COCze7QXUCbl-nc8fQ3ZTNFGZFGE,3984
|
544
|
-
lusid/models/instrument_event_type.py,sha256=
|
544
|
+
lusid/models/instrument_event_type.py,sha256=IWnkDz_6m3OYKTmOx3DjRWe6I4htspDhOtM9pOwdEHw,2176
|
545
545
|
lusid/models/instrument_id_type_descriptor.py,sha256=0p18FCVnh60RF3LiLPOsDgbqAyeGJPn_UETTaII0Dx4,2569
|
546
546
|
lusid/models/instrument_id_value.py,sha256=wWr4npSEr_hpTWDjFf8WhALa4o0NFNPmNKpuxY1S6PI,2220
|
547
547
|
lusid/models/instrument_leg.py,sha256=VLwsAAYE-icIaQWSX5B033ZEOpVwJlRlaArkL9Wi0PQ,5677
|
@@ -598,8 +598,10 @@ lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNr
|
|
598
598
|
lusid/models/market_options.py,sha256=peTygbETrHWKcKnKsn4ItPbgu0PidKG8d2U-DCApCAo,6247
|
599
599
|
lusid/models/market_quote.py,sha256=Ra6tOiimR6Rdf7pAESEWW2IMZG669jU8eNje8NepYZg,3325
|
600
600
|
lusid/models/match_criterion.py,sha256=cnLfFgO9k05dH7ooGS7s3d8BvyJNuVMDUh3Yt-SPuec,3568
|
601
|
-
lusid/models/maturity_event.py,sha256=
|
602
|
-
lusid/models/
|
601
|
+
lusid/models/maturity_event.py,sha256=4ue0VVuiDCzbMYDV6oHvAtXOZtoKUTHE_gmT9CKcZ9k,5206
|
602
|
+
lusid/models/mbs_coupon_event.py,sha256=PMaPB7l1lzc_Zz0tdyc6PB1fHreg3l681H7xznSRo8M,5855
|
603
|
+
lusid/models/mbs_principal_event.py,sha256=xbW4isVpEpCZjHJctKkCcLz5Fk2CxTcHvtFoXaiWdTc,5966
|
604
|
+
lusid/models/merger_event.py,sha256=N1ATKfaKOYgn4tV1aDIrpKhNJmATR8OWo5eMfKrurFc,11443
|
603
605
|
lusid/models/metric_value.py,sha256=QycljuRptuyuEisuUKhJ9kSSlDPJrAykErN9wPZ-x7o,2187
|
604
606
|
lusid/models/model_options.py,sha256=MaLJVMOfpgwL_ZLIIrLbLwpC1lhZKNkzMOGlFlVFgSM,4202
|
605
607
|
lusid/models/model_options_type.py,sha256=9vvfKHqvTqomRGVbnhsjA9hhCouD-acEgOeMK4OZ8AE,931
|
@@ -616,7 +618,7 @@ lusid/models/numeric_comparison_type.py,sha256=WGvpUP3x3ZPAuDiZjfQquJU6GoqIpubmm
|
|
616
618
|
lusid/models/opaque_dependency.py,sha256=Ht0hyAe6RncSF7vqTkGIg-YAycmNarb9ipyrlha_t_M,3778
|
617
619
|
lusid/models/opaque_market_data.py,sha256=-MZjF19x1jJRK3SNGqLE2u93eSFWgILoHQZMVQe1FBg,5168
|
618
620
|
lusid/models/opaque_model_options.py,sha256=kafN8F0SG-pjGN5yf--z1lBXyazMRYkrUI2saTfWCJY,3298
|
619
|
-
lusid/models/open_event.py,sha256=
|
621
|
+
lusid/models/open_event.py,sha256=i6GJ-GAOoqa0sZS-fVUFm6PdJXHzkVgw4rB2Q_O3f9Y,5140
|
620
622
|
lusid/models/operand_type.py,sha256=Loz7v9RxLu3rlHgcyZr3XtTkPNFLdBvST0D-YesPnHo,648
|
621
623
|
lusid/models/operation.py,sha256=LtqUFww2hQy0sa9kdCpHPz3XSvtHxqsWtRKjRDku2TA,2516
|
622
624
|
lusid/models/operation_type.py,sha256=kUOhDAUWv4sYAaZwRlXwaowlr_jBw9uUmsW1ffRsMv8,644
|
@@ -809,7 +811,7 @@ lusid/models/quote_id.py,sha256=dPe08swumG6Hc4Rk2p2YstGQafjJRcdQTF78EqYZEPk,2419
|
|
809
811
|
lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
|
810
812
|
lusid/models/quote_series_id.py,sha256=Y6Gvn6CFkbs2Rok7Cy2OxRetg4OCdhPPIzg7PlyzYGA,6006
|
811
813
|
lusid/models/quote_type.py,sha256=18LUYnfqUvhGJ0utX4QZIDjmZGXxHT1_3dooUPVi5OI,1088
|
812
|
-
lusid/models/raw_vendor_event.py,sha256=
|
814
|
+
lusid/models/raw_vendor_event.py,sha256=kiuXt2JuBZq7pyPGO76KdSF7K91WNlB661VQ-8n_qeE,6020
|
813
815
|
lusid/models/re_open_period_diary_entry_request.py,sha256=CcQqX5ekcLT_XTdWFJGZAmNQ2I5NMpzkwoLvfdoJ4X0,2792
|
814
816
|
lusid/models/realised_gain_loss.py,sha256=SqOAkbqLzwVkwmV4V4kFRLB6n55CJJhIfSDVK7xRHvg,7190
|
815
817
|
lusid/models/recipe_block.py,sha256=HDA6kexcMXEZXYEknTdRhyTNXi44WOmE1KtadUkVDC0,2848
|
@@ -849,7 +851,7 @@ lusid/models/relationship_definition.py,sha256=npRAIrrwG26GYoljTFDrB-vpd4fQun7oC
|
|
849
851
|
lusid/models/relative_date_offset.py,sha256=vjd-yELXhcUmdNyv7UqEaml_-nb2VsDpUeocHxT2Vmg,3016
|
850
852
|
lusid/models/repo.py,sha256=lupmudgi6BnaDOg0SAj_mScqXA4YWhYY1ys1R6TdRa8,11394
|
851
853
|
lusid/models/requested_changes.py,sha256=kyZ8eoZCDRaN15ZIrvoJ9BRRdy8Lf1jw1MJrhjUNduY,2467
|
852
|
-
lusid/models/reset_event.py,sha256=
|
854
|
+
lusid/models/reset_event.py,sha256=_Qi-Ka5o-TiM8QZLPMYa40WguDjsd9IpzayBZp1M8oI,6355
|
853
855
|
lusid/models/resource_id.py,sha256=c3SxFZVH_E3F6lCmIMntMd6EDaeCyAF33dSrSKA9jZ0,2064
|
854
856
|
lusid/models/resource_list_of_access_controlled_resource.py,sha256=_zb2c9apUlsdi8mX20q_M8YX-39EX_pBhNEwAECB3yA,4224
|
855
857
|
lusid/models/resource_list_of_access_metadata_value_of.py,sha256=J-gQGqolN8gYFQ1dYEE3adMqxTANz1g_2HE9Z0r5VbY,4395
|
@@ -932,7 +934,7 @@ lusid/models/result_value_dictionary.py,sha256=9Y_LcAKrU_RY84gNBujObXEx59DYgtixO
|
|
932
934
|
lusid/models/result_value_int.py,sha256=_tXdKUiNtsb10Wco7Hq8LCuUwab4HPyXBs3UQIkIrOE,4173
|
933
935
|
lusid/models/result_value_string.py,sha256=FCe2SsB9fZAvvjqRNuxQFTsa5sth7-3TlBdWujqO-c4,3881
|
934
936
|
lusid/models/result_value_type.py,sha256=CrOf0KEyx1VJIkAAyXjoGm8rcpSx26Gl_b5MgzZGqHU,1216
|
935
|
-
lusid/models/reverse_stock_split_event.py,sha256=
|
937
|
+
lusid/models/reverse_stock_split_event.py,sha256=Xjo5ZDej85BJS21rzrfGrJ_F8xHia9lo3D7Tmvk5Eco,6849
|
936
938
|
lusid/models/rounding_configuration.py,sha256=jpeBHvca82qlK64vSOkZD7azNRI3Z599lhpx66BKKcM,2297
|
937
939
|
lusid/models/rounding_configuration_component.py,sha256=bLKRyNkrImXApHRSxODZ0Kp6-mX-JK9ycdOIFdr45g4,2111
|
938
940
|
lusid/models/rounding_convention.py,sha256=wHP76MnZGN_2m25x7fRsNA6mkcCLmkHx-YSGSRRnrzk,3968
|
@@ -941,7 +943,7 @@ lusid/models/scaling_methodology.py,sha256=rP8s-CkaG3rZGG9E9MxCJu3NzbKKool_r_fB-
|
|
941
943
|
lusid/models/schedule.py,sha256=IQeymxyyU0fHANXmPICy6vUQ2sDC9KoyUk9U_X23wTU,4216
|
942
944
|
lusid/models/schedule_type.py,sha256=hdAqhI4A6L1z-Ipwd2xaecMiTCFqRN1Bz1Lc2BWXZTg,955
|
943
945
|
lusid/models/scope_definition.py,sha256=IUTgJoHwDqVhCWfnyGurk0zIhKN_C7JoltgIRvcSLVc,1907
|
944
|
-
lusid/models/scrip_dividend_event.py,sha256=
|
946
|
+
lusid/models/scrip_dividend_event.py,sha256=nwguEjaGyYRvRUYmrcRcsT3AX6kG6RY5zdNRoWItveI,8043
|
945
947
|
lusid/models/script_map_reference.py,sha256=lAT1UWlV1KaP5i4mTJFZDrm3Uw8HdxyvpA2ozl7lqFU,3357
|
946
948
|
lusid/models/security_election.py,sha256=tY1AkshueFnIgGzSpAmpK3gydlzIkU-JOFYW_T8p6zA,3429
|
947
949
|
lusid/models/security_offer_election.py,sha256=LIGdAJtyjY2dq58UAikfRTaogu321kDikLZfA4eKGmY,3000
|
@@ -971,7 +973,7 @@ lusid/models/simple_cash_flow_loan.py,sha256=9iHHvivjXERGxq5TlRj48zHzDmpjka83V11
|
|
971
973
|
lusid/models/simple_instrument.py,sha256=Cerk4RI9xGwP59xF19u0ar6JVMqHcEqC9mAysPCIlps,6849
|
972
974
|
lusid/models/sort_order.py,sha256=tx9hNHkrcdw2gQkSLTGQ-JED7cqZoFJ60abVdqkD-GM,644
|
973
975
|
lusid/models/specific_holding_pricing_info.py,sha256=_WET-WVDaYbP3FzwelwClwlfhODZNIdHGvAFI89xeFk,2733
|
974
|
-
lusid/models/spin_off_event.py,sha256=
|
976
|
+
lusid/models/spin_off_event.py,sha256=jbfBDXg5Ndl5t3n6UyRYTOaN9qOXc6dC5wiutwo1elI,8964
|
975
977
|
lusid/models/staged_modification.py,sha256=LGM7EU5w7C7W7fuW9bYEDySqevWEV6edaW206n9LxS4,9630
|
976
978
|
lusid/models/staged_modification_decision.py,sha256=IUIpOwYjk41vLP_nMWDzZgI354cCtM9L6Yrf-K_DP4s,3544
|
977
979
|
lusid/models/staged_modification_decision_request.py,sha256=6PlH7coUQUIJe1-2GcwpatO3tpcqHIBelpgrd_BZ8qQ,2257
|
@@ -985,8 +987,8 @@ lusid/models/staging_rule_approval_criteria.py,sha256=gkdB2pNgVE4-LvE6-P-QrLnT7z
|
|
985
987
|
lusid/models/staging_rule_match_criteria.py,sha256=_RxCyvulK3necsQz6LI7YacbSZAktEN5cITthxm9F-w,3561
|
986
988
|
lusid/models/staging_rule_set.py,sha256=05h5vV_9s3V2MYoH7o1K8pmjlUq15jJSsmyJ5ObRyKs,4896
|
987
989
|
lusid/models/step_schedule.py,sha256=1xCC_C_GzTIOY8GPUIaF75YoieJ6fwV4qQFQHTsJypg,4580
|
988
|
-
lusid/models/stock_dividend_event.py,sha256=
|
989
|
-
lusid/models/stock_split_event.py,sha256=
|
990
|
+
lusid/models/stock_dividend_event.py,sha256=gjjYRvCO7VBy_caYGv2uM5QnSCTZ5bOi8E7dr1Atkr4,8045
|
991
|
+
lusid/models/stock_split_event.py,sha256=yTL7zf08q8mT_jZCu2YlW-pC9_3orUFbnbCdToEder0,8025
|
990
992
|
lusid/models/stream.py,sha256=TGFloyewF3hi9RLyg0K3z13zxgvqAlHt46_AJuP9l7E,2865
|
991
993
|
lusid/models/string_comparison_type.py,sha256=4_CrV7WlDTrgAR866IyYXJZyVUXSNHBn7YrRdyiWKj0,799
|
992
994
|
lusid/models/string_compliance_parameter.py,sha256=_DVIosVMDhLYoONZUcMuIre5Ku8JAfIWjHB_okBu-DU,5318
|
@@ -995,8 +997,8 @@ lusid/models/string_list_compliance_parameter.py,sha256=bgph3OjWNEPR8OuLyJjrZGz9
|
|
995
997
|
lusid/models/structured_result_data.py,sha256=54I81CqBkq875kkEX3-gjGf2k9t23D62eCzefY-sek4,3744
|
996
998
|
lusid/models/structured_result_data_id.py,sha256=R15RxvxzgMy9R4zW0Ya1fSaYpMsXSijMDXiKTzGPAoM,4411
|
997
999
|
lusid/models/sub_holding_key_value_equals.py,sha256=2puONsExwFEYItLhbzwdwo-C2B5VVRYfJwbcDviclDg,3498
|
998
|
-
lusid/models/swap_cash_flow_event.py,sha256=
|
999
|
-
lusid/models/swap_principal_event.py,sha256=
|
1000
|
+
lusid/models/swap_cash_flow_event.py,sha256=kmOfEUq2J5fQzDB9qOy_2jC-Jowd9cg4tynA2FgTP1k,5913
|
1001
|
+
lusid/models/swap_principal_event.py,sha256=O6n-ZwKai6tQbpWDLmF12ZItAFGZAYmgCPWL4saK5J4,5917
|
1000
1002
|
lusid/models/target_tax_lot.py,sha256=0rexGWPhEdOaj5_Z6OLxb-7AVTMYL4PfaI_Xcw5ZLm8,4296
|
1001
1003
|
lusid/models/target_tax_lot_request.py,sha256=UwhPoC9hMlbjBZ3dL28Yq2orn1v3vJ7eLctnEGkjKy4,4290
|
1002
1004
|
lusid/models/tax_rule.py,sha256=Mwc712YrMyeqXxJB6aUgNjCxy872or0_dtoNUZFNOBw,3530
|
@@ -1042,7 +1044,7 @@ lusid/models/transaction_type_movement.py,sha256=eG4MQrMi0P_ihxOcfsqPAnkYuOmwbho
|
|
1042
1044
|
lusid/models/transaction_type_property_mapping.py,sha256=2fmP3IJH-44GXE5-jt4Fd55xQscWTrEa76yjQJIUs_4,3249
|
1043
1045
|
lusid/models/transaction_type_request.py,sha256=tuoF4_cUe0KLjF4FN_un_wGtraNfJAXoNrfudvA0zIc,5121
|
1044
1046
|
lusid/models/transactions_reconciliations_response.py,sha256=ogcMW8W4vgIDqEdggwJDA0tH-SInrqIFCLved7SZ-VM,3083
|
1045
|
-
lusid/models/transition_event.py,sha256=
|
1047
|
+
lusid/models/transition_event.py,sha256=89Eu6OxFaI87ZgHRJ-zYmcC5WK1yrIBMTjV2WBSDteA,7365
|
1046
1048
|
lusid/models/translate_entities_inlined_request.py,sha256=ZhGACGzNSDIeQwIN8iQniclFypCWEl4RsMf_NEKB3nU,3576
|
1047
1049
|
lusid/models/translate_entities_request.py,sha256=aCRconXgNBLgdPzKRK09t_jMoHCkkOIpktI0KyhKtDM,3790
|
1048
1050
|
lusid/models/translate_entities_response.py,sha256=nWI03db6VRy-SLlcW1i8l4R1uNGERNPUeIDLSexBrrc,4458
|
@@ -1057,7 +1059,7 @@ lusid/models/translation_script.py,sha256=j-UdU56HTuGFwrkTaJiq0Z6KFgE9GVGG9a9_jX
|
|
1057
1059
|
lusid/models/translation_script_id.py,sha256=5JWxbDjiPVpsDZuz8RNmiC3JkVGOhodnLc2_NNmw17Q,3279
|
1058
1060
|
lusid/models/trial_balance.py,sha256=Kv-qKEzG4UPxyYsY9As1LqojQ2BL5y4ijw6DuNkZvno,6216
|
1059
1061
|
lusid/models/trial_balance_query_parameters.py,sha256=u9ivqLRFnZMsHpAqEIX7RFkK3nkEVkgMR0VW1r2EE7Y,4950
|
1060
|
-
lusid/models/trigger_event.py,sha256
|
1062
|
+
lusid/models/trigger_event.py,sha256=-_CtZlFeYVHRzKtsXOf9gp_HBO8NWFxT0aGL5m9UC10,6178
|
1061
1063
|
lusid/models/typed_resource_id.py,sha256=wu3n9oSrautEnoz1iqHvX8I6Uu_PO0ETQQObHW01PD8,3908
|
1062
1064
|
lusid/models/unit_schema.py,sha256=i--1Gb0hYLo7lLH51nBC2Uzz8Sr6wOsKh6mdHjMN-aQ,675
|
1063
1065
|
lusid/models/unitisation_data.py,sha256=SNaV2LP5zHqLol4huDJyIFYu1knhHdB9O75oUfWkJds,2550
|
@@ -1170,6 +1172,6 @@ lusid/models/workspace_update_request.py,sha256=uUXEpX-dJ5UiL9w1wMxIFeovSBiTJ-vi
|
|
1170
1172
|
lusid/models/yield_curve_data.py,sha256=SbxvdJ4-GWK9kpMdw4Fnxc7_kvIMwgsRsd_31UJn7nw,6330
|
1171
1173
|
lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1172
1174
|
lusid/rest.py,sha256=TNUzQ3yLNT2L053EdR7R0vNzQh2J3TlYD1T56Dye0W0,10138
|
1173
|
-
lusid_sdk-2.1.
|
1174
|
-
lusid_sdk-2.1.
|
1175
|
-
lusid_sdk-2.1.
|
1175
|
+
lusid_sdk-2.1.429.dist-info/METADATA,sha256=V5iHaHeDSjK3p5LhQeXELmuYI5QRoUECe_ylrld6S14,201453
|
1176
|
+
lusid_sdk-2.1.429.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
1177
|
+
lusid_sdk-2.1.429.dist-info/RECORD,,
|
File without changes
|