lusid-sdk 2.1.805__py3-none-any.whl → 2.1.807__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.
@@ -28,7 +28,7 @@ class MarketDataKeyRule(BaseModel):
28
28
  key: StrictStr = Field(...,alias="key", description="A dot-separated string that defines a pattern for matching market data dependencies. The form of the string depends on the type of the dependency; see below for basic types and the Knowledge Base for further info. Quote lookup: \"Quote.{CodeType}.*\" e.g. \"Quote.RIC.*\" refers to 'any RIC quote' Fx rates: \"Fx.CurrencyPair.*\", which refers to 'any FX rate' Discounting curves: \"Rates.{Currency}.{Currency}OIS e.g. \"Rates.USD.USDOIS\" refers to the OIS USD discounting curve For non-fx and non-quote rules, trailing parameters can be replaced by the wildcard character '*'. e.g. \"Rates.*.*\" matches any dependency on a discounting curve.")
29
29
  supplier: StrictStr = Field(...,alias="supplier", description="The market data supplier (where the data comes from)")
30
30
  data_scope: StrictStr = Field(...,alias="dataScope", description="The scope in which the data should be found when using this rule.")
31
- quote_type: StrictStr = Field(...,alias="quoteType", description="The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall")
31
+ quote_type: StrictStr = Field(...,alias="quoteType", description="The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall, ConstituentWeightFactor")
32
32
  field: Optional[StrictStr] = Field(None,alias="field", description="The conceptual qualification for the field, typically 'bid', 'mid' (default), or 'ask', but can also be 'open', 'close', etc. When resolving quotes from LUSID's database, only quotes whose Field is identical to the Field specified here will be accepted as market data. When resolving data from an external supplier, the Field must be one of a defined set for the given supplier. Note: Applies to the retrieval of quotes only. Has no impact on the resolution of complex market data.")
33
33
  quote_interval: Optional[StrictStr] = Field(None,alias="quoteInterval", description="Shorthand for the time interval used to select market data. This must be a dot-separated string nominating a start and end date, for example '5D.0D' to look back 5 days from today (0 days ago). The syntax is <i>int</i><i>char</i>.<i>int</i><i>char</i>, where <i>char</i> is one of D(ay), Bd(business day), W(eek), M(onth) or Y(ear). Business days are calculated using the calendars specified on the Valuation Request. If no calendar is provided in the request, then it will default to only skipping weekends. For example, if the valuation date is a Monday, then a quote interval of \"1Bd\" would behave as \"3D\", looking back to the Friday. Data with effectiveAt on the weekend will still be found in that window.")
34
34
  as_at: Optional[datetime] = Field(None, alias="asAt", description="Deprecated field which no longer has any effect on market data resolution.")
@@ -93,8 +93,8 @@ class MarketDataKeyRule(BaseModel):
93
93
  if "quote_type" != "type":
94
94
  return value
95
95
 
96
- if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall'):
97
- raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall')")
96
+ if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor'):
97
+ raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor')")
98
98
  return value
99
99
 
100
100
  class Config:
@@ -29,7 +29,7 @@ class MarketDataSpecificRule(BaseModel):
29
29
  key: StrictStr = Field(...,alias="key", description="The market data key pattern which this is a rule for. A dot separated string (A.B.C.D.*)")
30
30
  supplier: StrictStr = Field(...,alias="supplier", description="The market data supplier (where the data comes from)")
31
31
  data_scope: StrictStr = Field(...,alias="dataScope", description="The scope in which the data should be found when using this rule.")
32
- quote_type: StrictStr = Field(...,alias="quoteType", description="The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall")
32
+ quote_type: StrictStr = Field(...,alias="quoteType", description="The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall, ConstituentWeightFactor")
33
33
  field: StrictStr = Field(...,alias="field", description="The conceptual qualification for the field, such as bid, mid, or ask. The field must be one of a defined set for the given supplier, in the same way as it is for the Finbourne.WebApi.Interface.Dto.Quotes.QuoteSeriesId")
34
34
  quote_interval: Optional[StrictStr] = Field(None,alias="quoteInterval", description="Shorthand for the time interval used to select market data. This must be a dot-separated string nominating a start and end date, for example '5D.0D' to look back 5 days from today (0 days ago). The syntax is <i>int</i><i>char</i>.<i>int</i><i>char</i>, where <i>char</i> is one of D(ay), W(eek), M(onth) or Y(ear).")
35
35
  as_at: Optional[datetime] = Field(None, alias="asAt", description="Deprecated field which no longer has any effect on market data resolution.")
@@ -95,8 +95,8 @@ class MarketDataSpecificRule(BaseModel):
95
95
  if "quote_type" != "type":
96
96
  return value
97
97
 
98
- if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall'):
99
- raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall')")
98
+ if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor'):
99
+ raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor')")
100
100
  return value
101
101
 
102
102
  class Config:
@@ -25,7 +25,7 @@ class MarketQuote(BaseModel):
25
25
  """
26
26
  The market quote for an observable which will be used to calibrate the market data, including the format of the quote. e.g. a volatility quote for a specific strike and expiry the par rate of a swap This is a slimmed down version of a full Quote that can be stored in our QuoteStore to remove lineage, price source etc. for ease of use when creating complex market data. # noqa: E501
27
27
  """
28
- quote_type: StrictStr = Field(...,alias="quoteType", description="The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall")
28
+ quote_type: StrictStr = Field(...,alias="quoteType", description="The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall, ConstituentWeightFactor")
29
29
  value: Union[StrictFloat, StrictInt] = Field(..., description="Numeric value of the quote")
30
30
  __properties = ["quoteType", "value"]
31
31
 
@@ -84,8 +84,8 @@ class MarketQuote(BaseModel):
84
84
  if "quote_type" != "type":
85
85
  return value
86
86
 
87
- if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall'):
88
- raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall')")
87
+ if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor'):
88
+ raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor')")
89
89
  return value
90
90
 
91
91
  class Config:
@@ -22,6 +22,7 @@ from typing import Any, Dict, List, Optional, Union
22
22
  from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictFloat, StrictInt, StrictStr, conlist, constr, validator
23
23
  from lusid.models.currency_and_amount import CurrencyAndAmount
24
24
  from lusid.models.custodian_account import CustodianAccount
25
+ from lusid.models.economics import Economics
25
26
  from lusid.models.otc_confirmation import OtcConfirmation
26
27
  from lusid.models.perpetual_property import PerpetualProperty
27
28
  from lusid.models.realised_gain_loss import RealisedGainLoss
@@ -66,7 +67,8 @@ class OutputTransaction(BaseModel):
66
67
  order_id: Optional[ResourceId] = Field(None, alias="orderId")
67
68
  allocation_id: Optional[ResourceId] = Field(None, alias="allocationId")
68
69
  accounting_date: Optional[datetime] = Field(None, alias="accountingDate", description="The accounting date of the transaction.")
69
- __properties = ["transactionId", "type", "description", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "transactionDate", "settlementDate", "units", "transactionAmount", "transactionPrice", "totalConsideration", "exchangeRate", "transactionToPortfolioRate", "transactionCurrency", "properties", "counterpartyId", "source", "transactionStatus", "entryDateTime", "cancelDateTime", "realisedGainLoss", "holdingIds", "sourceType", "sourceInstrumentEventId", "custodianAccount", "transactionGroupId", "resolvedTransactionTypeDetails", "grossTransactionAmount", "otcConfirmation", "orderId", "allocationId", "accountingDate"]
70
+ economics: Optional[conlist(Economics)] = Field(None, description="Set of economic data related with the transaction impacts.")
71
+ __properties = ["transactionId", "type", "description", "instrumentIdentifiers", "instrumentScope", "instrumentUid", "transactionDate", "settlementDate", "units", "transactionAmount", "transactionPrice", "totalConsideration", "exchangeRate", "transactionToPortfolioRate", "transactionCurrency", "properties", "counterpartyId", "source", "transactionStatus", "entryDateTime", "cancelDateTime", "realisedGainLoss", "holdingIds", "sourceType", "sourceInstrumentEventId", "custodianAccount", "transactionGroupId", "resolvedTransactionTypeDetails", "grossTransactionAmount", "otcConfirmation", "orderId", "allocationId", "accountingDate", "economics"]
70
72
 
71
73
  @validator('transaction_status')
72
74
  def transaction_status_validate_enum(cls, value):
@@ -197,6 +199,13 @@ class OutputTransaction(BaseModel):
197
199
  # override the default output from pydantic by calling `to_dict()` of allocation_id
198
200
  if self.allocation_id:
199
201
  _dict['allocationId'] = self.allocation_id.to_dict()
202
+ # override the default output from pydantic by calling `to_dict()` of each item in economics (list)
203
+ _items = []
204
+ if self.economics:
205
+ for _item in self.economics:
206
+ if _item:
207
+ _items.append(_item.to_dict())
208
+ _dict['economics'] = _items
200
209
  # set to None if description (nullable) is None
201
210
  # and __fields_set__ contains the field
202
211
  if self.description is None and "description" in self.__fields_set__:
@@ -272,6 +281,11 @@ class OutputTransaction(BaseModel):
272
281
  if self.accounting_date is None and "accounting_date" in self.__fields_set__:
273
282
  _dict['accountingDate'] = None
274
283
 
284
+ # set to None if economics (nullable) is None
285
+ # and __fields_set__ contains the field
286
+ if self.economics is None and "economics" in self.__fields_set__:
287
+ _dict['economics'] = None
288
+
275
289
  return _dict
276
290
 
277
291
  @classmethod
@@ -321,6 +335,7 @@ class OutputTransaction(BaseModel):
321
335
  "otc_confirmation": OtcConfirmation.from_dict(obj.get("otcConfirmation")) if obj.get("otcConfirmation") is not None else None,
322
336
  "order_id": ResourceId.from_dict(obj.get("orderId")) if obj.get("orderId") is not None else None,
323
337
  "allocation_id": ResourceId.from_dict(obj.get("allocationId")) if obj.get("allocationId") is not None else None,
324
- "accounting_date": obj.get("accountingDate")
338
+ "accounting_date": obj.get("accountingDate"),
339
+ "economics": [Economics.from_dict(_item) for _item in obj.get("economics")] if obj.get("economics") is not None else None
325
340
  })
326
341
  return _obj
@@ -29,7 +29,7 @@ class QuoteSeriesId(BaseModel):
29
29
  price_source: Optional[StrictStr] = Field(None,alias="priceSource", description="The source or originator of the quote, e.g. a bank or financial institution.")
30
30
  instrument_id: StrictStr = Field(...,alias="instrumentId", description="The value of the instrument identifier that uniquely identifies the instrument that the quote is for, e.g. 'BBG00JX0P539'.")
31
31
  instrument_id_type: StrictStr = Field(...,alias="instrumentIdType", description="The type of instrument identifier used to uniquely identify the instrument that the quote is for, e.g. 'Figi'. The available values are: LusidInstrumentId, Figi, RIC, QuotePermId, Isin, CurrencyPair, ClientInternal, Sedol, Cusip")
32
- quote_type: StrictStr = Field(...,alias="quoteType", description="The type of the quote. This allows for quotes other than prices e.g. rates or spreads to be used. The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall")
32
+ quote_type: StrictStr = Field(...,alias="quoteType", description="The type of the quote. This allows for quotes other than prices e.g. rates or spreads to be used. The available values are: Price, Spread, Rate, LogNormalVol, NormalVol, ParSpread, IsdaSpread, Upfront, Index, Ratio, Delta, PoolFactor, InflationAssumption, DirtyPrice, PrincipalWriteOff, InterestDeferred, InterestShortfall, ConstituentWeightFactor")
33
33
  field: StrictStr = Field(...,alias="field", description="The field of the quote e.g. bid, mid, ask etc. This should be consistent across a time series of quotes. The allowed values depend on the provider according to the following rules: Client : *Any value is accepted*; DataScope : 'bid', 'mid', 'ask'; Lusid : *Any value is accepted*; Edi : 'bid', 'mid', 'ask', 'open', 'close', 'last'; TraderMade : 'bid', 'mid', 'ask', 'open', 'close', 'high', 'low'; FactSet : 'bid', 'mid', 'ask', 'open', 'close'; SIX : 'bid', 'mid', 'ask', 'open', 'close', 'last', 'referencePrice', 'highPrice', 'lowPrice', 'maxRedemptionPrice', 'maxSubscriptionPrice', 'openPrice', 'bestBidPrice', 'lastBidPrice', 'bestAskPrice', 'lastAskPrice', 'finalSettlementOptions', 'finalSettlementFutures', 'valuationPriceAmount'; Bloomberg : 'bid', 'mid', 'ask', 'open', 'close', 'last'; Rimes : 'bid', 'mid', 'ask', 'open', 'close', 'last'; ICE : 'ask', 'bid', 'close', 'high', 'low', 'open', 'primaryExchangeTradePrice', 'vwap', 'mid'; LSEG : 'ASK', 'BID', 'MID_PRICE'")
34
34
  __properties = ["provider", "priceSource", "instrumentId", "instrumentIdType", "quoteType", "field"]
35
35
 
@@ -147,8 +147,8 @@ class QuoteSeriesId(BaseModel):
147
147
  if "quote_type" != "type":
148
148
  return value
149
149
 
150
- if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall'):
151
- raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall')")
150
+ if value not in ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor'):
151
+ raise ValueError("must be one of enum values ('Price', 'Spread', 'Rate', 'LogNormalVol', 'NormalVol', 'ParSpread', 'IsdaSpread', 'Upfront', 'Index', 'Ratio', 'Delta', 'PoolFactor', 'InflationAssumption', 'DirtyPrice', 'PrincipalWriteOff', 'InterestDeferred', 'InterestShortfall', 'ConstituentWeightFactor')")
152
152
  return value
153
153
 
154
154
  class Config:
@@ -46,6 +46,7 @@ class QuoteType(str, Enum):
46
46
  PRINCIPALWRITEOFF = 'PrincipalWriteOff'
47
47
  INTERESTDEFERRED = 'InterestDeferred'
48
48
  INTERESTSHORTFALL = 'InterestShortfall'
49
+ CONSTITUENTWEIGHTFACTOR = 'ConstituentWeightFactor'
49
50
 
50
51
  @classmethod
51
52
  def from_json(cls, json_str: str) -> QuoteType:
@@ -0,0 +1,121 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ LUSID API
5
+
6
+ FINBOURNE Technology # noqa: E501
7
+
8
+ Contact: info@finbourne.com
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+
21
+ from typing import Any, Dict, List, Optional
22
+ from pydantic.v1 import StrictStr, Field, BaseModel, Field, StrictStr, conlist
23
+ from lusid.models.investor_record import InvestorRecord
24
+ from lusid.models.link import Link
25
+
26
+ class ResourceListOfInvestorRecord(BaseModel):
27
+ """
28
+ ResourceListOfInvestorRecord
29
+ """
30
+ values: conlist(InvestorRecord) = Field(...)
31
+ href: Optional[StrictStr] = Field(None,alias="href")
32
+ links: Optional[conlist(Link)] = None
33
+ next_page: Optional[StrictStr] = Field(None,alias="nextPage")
34
+ previous_page: Optional[StrictStr] = Field(None,alias="previousPage")
35
+ __properties = ["values", "href", "links", "nextPage", "previousPage"]
36
+
37
+ class Config:
38
+ """Pydantic configuration"""
39
+ allow_population_by_field_name = True
40
+ validate_assignment = True
41
+
42
+ def __str__(self):
43
+ """For `print` and `pprint`"""
44
+ return pprint.pformat(self.dict(by_alias=False))
45
+
46
+ def __repr__(self):
47
+ """For `print` and `pprint`"""
48
+ return self.to_str()
49
+
50
+ def to_str(self) -> str:
51
+ """Returns the string representation of the model using alias"""
52
+ return pprint.pformat(self.dict(by_alias=True))
53
+
54
+ def to_json(self) -> str:
55
+ """Returns the JSON representation of the model using alias"""
56
+ return json.dumps(self.to_dict())
57
+
58
+ @classmethod
59
+ def from_json(cls, json_str: str) -> ResourceListOfInvestorRecord:
60
+ """Create an instance of ResourceListOfInvestorRecord from a JSON string"""
61
+ return cls.from_dict(json.loads(json_str))
62
+
63
+ def to_dict(self):
64
+ """Returns the dictionary representation of the model using alias"""
65
+ _dict = self.dict(by_alias=True,
66
+ exclude={
67
+ },
68
+ exclude_none=True)
69
+ # override the default output from pydantic by calling `to_dict()` of each item in values (list)
70
+ _items = []
71
+ if self.values:
72
+ for _item in self.values:
73
+ if _item:
74
+ _items.append(_item.to_dict())
75
+ _dict['values'] = _items
76
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
77
+ _items = []
78
+ if self.links:
79
+ for _item in self.links:
80
+ if _item:
81
+ _items.append(_item.to_dict())
82
+ _dict['links'] = _items
83
+ # set to None if href (nullable) is None
84
+ # and __fields_set__ contains the field
85
+ if self.href is None and "href" in self.__fields_set__:
86
+ _dict['href'] = None
87
+
88
+ # set to None if links (nullable) is None
89
+ # and __fields_set__ contains the field
90
+ if self.links is None and "links" in self.__fields_set__:
91
+ _dict['links'] = None
92
+
93
+ # set to None if next_page (nullable) is None
94
+ # and __fields_set__ contains the field
95
+ if self.next_page is None and "next_page" in self.__fields_set__:
96
+ _dict['nextPage'] = None
97
+
98
+ # set to None if previous_page (nullable) is None
99
+ # and __fields_set__ contains the field
100
+ if self.previous_page is None and "previous_page" in self.__fields_set__:
101
+ _dict['previousPage'] = None
102
+
103
+ return _dict
104
+
105
+ @classmethod
106
+ def from_dict(cls, obj: dict) -> ResourceListOfInvestorRecord:
107
+ """Create an instance of ResourceListOfInvestorRecord from a dict"""
108
+ if obj is None:
109
+ return None
110
+
111
+ if not isinstance(obj, dict):
112
+ return ResourceListOfInvestorRecord.parse_obj(obj)
113
+
114
+ _obj = ResourceListOfInvestorRecord.parse_obj({
115
+ "values": [InvestorRecord.from_dict(_item) for _item in obj.get("values")] if obj.get("values") is not None else None,
116
+ "href": obj.get("href"),
117
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None,
118
+ "next_page": obj.get("nextPage"),
119
+ "previous_page": obj.get("previousPage")
120
+ })
121
+ return _obj
@@ -31,7 +31,8 @@ class TransactionQueryParameters(BaseModel):
31
31
  show_cancelled_transactions: Optional[StrictBool] = Field(None, alias="showCancelledTransactions", description="Option to specify whether or not to include cancelled transactions in the output. Defaults to False if not specified.")
32
32
  timeline_scope: Optional[StrictStr] = Field(None,alias="timelineScope", description="Scope of the Timeline for the Portfolio. The Timeline to be used while building transactions")
33
33
  timeline_code: Optional[StrictStr] = Field(None,alias="timelineCode", description="Code of the Timeline for the Portfolio. The Timeline to be used while building transactions")
34
- __properties = ["startDate", "endDate", "queryMode", "showCancelledTransactions", "timelineScope", "timelineCode"]
34
+ include_economics: Optional[StrictBool] = Field(None, alias="includeEconomics", description="By default is false. When set to true the Economics data would be populated in the response.")
35
+ __properties = ["startDate", "endDate", "queryMode", "showCancelledTransactions", "timelineScope", "timelineCode", "includeEconomics"]
35
36
 
36
37
  @validator('query_mode')
37
38
  def query_mode_validate_enum(cls, value):
@@ -154,6 +155,7 @@ class TransactionQueryParameters(BaseModel):
154
155
  "query_mode": obj.get("queryMode"),
155
156
  "show_cancelled_transactions": obj.get("showCancelledTransactions"),
156
157
  "timeline_scope": obj.get("timelineScope"),
157
- "timeline_code": obj.get("timelineCode")
158
+ "timeline_code": obj.get("timelineCode"),
159
+ "include_economics": obj.get("includeEconomics")
158
160
  })
159
161
  return _obj
@@ -0,0 +1,96 @@
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, List, Optional
22
+ from pydantic.v1 import StrictStr, Field, BaseModel, Field, conlist
23
+ from lusid.models.link import Link
24
+
25
+ class TransferAgencyDates(BaseModel):
26
+ """
27
+ TransferAgencyDates
28
+ """
29
+ price_date: Optional[datetime] = Field(None, alias="priceDate", description="The date at which the fund is priced, for the order received on ReceivedDate. Can be passed into the request instead of the ReceivedDate to calculate the TransactionDate and ExpectedPaymentDate.")
30
+ transaction_date: Optional[datetime] = Field(None, alias="transactionDate", description="The date at which the transaction into or out of the fund is made.")
31
+ expected_payment_date: Optional[datetime] = Field(None, alias="expectedPaymentDate", description="The date by which the cash is expected to be paid to or from the fund.")
32
+ links: Optional[conlist(Link)] = None
33
+ __properties = ["priceDate", "transactionDate", "expectedPaymentDate", "links"]
34
+
35
+ class Config:
36
+ """Pydantic configuration"""
37
+ allow_population_by_field_name = True
38
+ validate_assignment = True
39
+
40
+ def __str__(self):
41
+ """For `print` and `pprint`"""
42
+ return pprint.pformat(self.dict(by_alias=False))
43
+
44
+ def __repr__(self):
45
+ """For `print` and `pprint`"""
46
+ return self.to_str()
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.dict(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ return json.dumps(self.to_dict())
55
+
56
+ @classmethod
57
+ def from_json(cls, json_str: str) -> TransferAgencyDates:
58
+ """Create an instance of TransferAgencyDates from a JSON string"""
59
+ return cls.from_dict(json.loads(json_str))
60
+
61
+ def to_dict(self):
62
+ """Returns the dictionary representation of the model using alias"""
63
+ _dict = self.dict(by_alias=True,
64
+ exclude={
65
+ },
66
+ exclude_none=True)
67
+ # override the default output from pydantic by calling `to_dict()` of each item in links (list)
68
+ _items = []
69
+ if self.links:
70
+ for _item in self.links:
71
+ if _item:
72
+ _items.append(_item.to_dict())
73
+ _dict['links'] = _items
74
+ # set to None if links (nullable) is None
75
+ # and __fields_set__ contains the field
76
+ if self.links is None and "links" in self.__fields_set__:
77
+ _dict['links'] = None
78
+
79
+ return _dict
80
+
81
+ @classmethod
82
+ def from_dict(cls, obj: dict) -> TransferAgencyDates:
83
+ """Create an instance of TransferAgencyDates from a dict"""
84
+ if obj is None:
85
+ return None
86
+
87
+ if not isinstance(obj, dict):
88
+ return TransferAgencyDates.parse_obj(obj)
89
+
90
+ _obj = TransferAgencyDates.parse_obj({
91
+ "price_date": obj.get("priceDate"),
92
+ "transaction_date": obj.get("transactionDate"),
93
+ "expected_payment_date": obj.get("expectedPaymentDate"),
94
+ "links": [Link.from_dict(_item) for _item in obj.get("links")] if obj.get("links") is not None else None
95
+ })
96
+ return _obj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lusid-sdk
3
- Version: 2.1.805
3
+ Version: 2.1.807
4
4
  Summary: LUSID API
5
5
  Home-page: https://github.com/finbourne/lusid-sdk-python
6
6
  License: MIT
@@ -329,8 +329,9 @@ Class | Method | HTTP request | Description
329
329
  *InstrumentsApi* | [**update_instrument_identifier**](docs/InstrumentsApi.md#update_instrument_identifier) | **POST** /api/instruments/{identifierType}/{identifier} | UpdateInstrumentIdentifier: Update instrument identifier
330
330
  *InstrumentsApi* | [**upsert_instruments**](docs/InstrumentsApi.md#upsert_instruments) | **POST** /api/instruments | UpsertInstruments: Upsert instruments
331
331
  *InstrumentsApi* | [**upsert_instruments_properties**](docs/InstrumentsApi.md#upsert_instruments_properties) | **POST** /api/instruments/$upsertproperties | UpsertInstrumentsProperties: Upsert instruments properties
332
- *InvestorRecordsApi* | [**delete_investor_record**](docs/InvestorRecordsApi.md#delete_investor_record) | **DELETE** /api/investorrecords/{idTypeScope}/{idTypeCode}/{code} | DeleteInvestorRecord: Delete Investor Record
332
+ *InvestorRecordsApi* | [**delete_investor_record**](docs/InvestorRecordsApi.md#delete_investor_record) | **DELETE** /api/investorrecords/{idTypeScope}/{idTypeCode}/{code} | [EARLY ACCESS] DeleteInvestorRecord: Delete Investor Record
333
333
  *InvestorRecordsApi* | [**get_investor_record**](docs/InvestorRecordsApi.md#get_investor_record) | **GET** /api/investorrecords/{idTypeScope}/{idTypeCode}/{code} | [EARLY ACCESS] GetInvestorRecord: Get Investor Record
334
+ *InvestorRecordsApi* | [**list_all_investor_records**](docs/InvestorRecordsApi.md#list_all_investor_records) | **GET** /api/investorrecords | [EARLY ACCESS] ListAllInvestorRecords: List Investor Records
334
335
  *InvestorRecordsApi* | [**upsert_investor_records**](docs/InvestorRecordsApi.md#upsert_investor_records) | **POST** /api/investorrecords/$batchUpsert | [EARLY ACCESS] UpsertInvestorRecords: Pluralised upsert of Investor Records
335
336
  *LegacyComplianceApi* | [**delete_legacy_compliance_rule**](docs/LegacyComplianceApi.md#delete_legacy_compliance_rule) | **DELETE** /api/legacy/compliance/rules/{scope}/{code} | [EXPERIMENTAL] DeleteLegacyComplianceRule: Deletes a compliance rule.
336
337
  *LegacyComplianceApi* | [**get_legacy_breached_orders_info**](docs/LegacyComplianceApi.md#get_legacy_breached_orders_info) | **GET** /api/legacy/compliance/runs/breached/{runId} | [EXPERIMENTAL] GetLegacyBreachedOrdersInfo: Get the Ids of Breached orders in a given compliance run and the corresponding list of rules that could have caused it.
@@ -642,6 +643,7 @@ Class | Method | HTTP request | Description
642
643
  *TransactionPortfoliosApi* | [**upsert_portfolio_details**](docs/TransactionPortfoliosApi.md#upsert_portfolio_details) | **POST** /api/transactionportfolios/{scope}/{code}/details | UpsertPortfolioDetails: Upsert portfolio details
643
644
  *TransactionPortfoliosApi* | [**upsert_transaction_properties**](docs/TransactionPortfoliosApi.md#upsert_transaction_properties) | **POST** /api/transactionportfolios/{scope}/{code}/transactions/{transactionId}/properties | UpsertTransactionProperties: Upsert transaction properties
644
645
  *TransactionPortfoliosApi* | [**upsert_transactions**](docs/TransactionPortfoliosApi.md#upsert_transactions) | **POST** /api/transactionportfolios/{scope}/{code}/transactions | UpsertTransactions: Upsert transactions
646
+ *TransferAgencyApi* | [**calculate_order_dates**](docs/TransferAgencyApi.md#calculate_order_dates) | **POST** /api/transferagency/orderdates | [EXPERIMENTAL] CalculateOrderDates: Calculate the key dates associated with transfer agency orders
645
647
  *TranslationApi* | [**translate_instrument_definitions**](docs/TranslationApi.md#translate_instrument_definitions) | **POST** /api/translation/instrumentdefinitions | [EXPERIMENTAL] TranslateInstrumentDefinitions: Translate instruments
646
648
  *TranslationApi* | [**translate_trade_tickets**](docs/TranslationApi.md#translate_trade_tickets) | **POST** /api/translation/tradetickets | [EXPERIMENTAL] TranslateTradeTickets: Translate trade ticket
647
649
  *WorkspaceApi* | [**create_item**](docs/WorkspaceApi.md#create_item) | **POST** /api/workspaces/{visibility}/{workspaceName}/items | [EXPERIMENTAL] CreateItem: Create a new item in a workspace.
@@ -766,9 +768,12 @@ Class | Method | HTTP request | Description
766
768
  - [BranchStep](docs/BranchStep.md)
767
769
  - [BranchStepRequest](docs/BranchStepRequest.md)
768
770
  - [BreakCodeSource](docs/BreakCodeSource.md)
771
+ - [Bucket](docs/Bucket.md)
769
772
  - [BucketedCashFlowRequest](docs/BucketedCashFlowRequest.md)
770
773
  - [BucketedCashFlowResponse](docs/BucketedCashFlowResponse.md)
771
774
  - [BucketingSchedule](docs/BucketingSchedule.md)
775
+ - [CalculateOrderDatesRequest](docs/CalculateOrderDatesRequest.md)
776
+ - [CalculateOrderDatesResponse](docs/CalculateOrderDatesResponse.md)
772
777
  - [CalculationInfo](docs/CalculationInfo.md)
773
778
  - [Calendar](docs/Calendar.md)
774
779
  - [CalendarDate](docs/CalendarDate.md)
@@ -996,6 +1001,7 @@ Class | Method | HTTP request | Description
996
1001
  - [EconomicDependencyType](docs/EconomicDependencyType.md)
997
1002
  - [EconomicDependencyWithComplexMarketData](docs/EconomicDependencyWithComplexMarketData.md)
998
1003
  - [EconomicDependencyWithQuote](docs/EconomicDependencyWithQuote.md)
1004
+ - [Economics](docs/Economics.md)
999
1005
  - [EffectiveRange](docs/EffectiveRange.md)
1000
1006
  - [ElectionSpecification](docs/ElectionSpecification.md)
1001
1007
  - [EligibilityCalculation](docs/EligibilityCalculation.md)
@@ -1566,6 +1572,7 @@ Class | Method | HTTP request | Description
1566
1572
  - [ResourceListOfInstrumentCashFlow](docs/ResourceListOfInstrumentCashFlow.md)
1567
1573
  - [ResourceListOfInstrumentEventHolder](docs/ResourceListOfInstrumentEventHolder.md)
1568
1574
  - [ResourceListOfInstrumentIdTypeDescriptor](docs/ResourceListOfInstrumentIdTypeDescriptor.md)
1575
+ - [ResourceListOfInvestorRecord](docs/ResourceListOfInvestorRecord.md)
1569
1576
  - [ResourceListOfLegalEntity](docs/ResourceListOfLegalEntity.md)
1570
1577
  - [ResourceListOfListComplexMarketDataWithMetaDataResponse](docs/ResourceListOfListComplexMarketDataWithMetaDataResponse.md)
1571
1578
  - [ResourceListOfMapping](docs/ResourceListOfMapping.md)
@@ -1739,6 +1746,7 @@ Class | Method | HTTP request | Description
1739
1746
  - [TransactionTypePropertyMapping](docs/TransactionTypePropertyMapping.md)
1740
1747
  - [TransactionTypeRequest](docs/TransactionTypeRequest.md)
1741
1748
  - [TransactionsReconciliationsResponse](docs/TransactionsReconciliationsResponse.md)
1749
+ - [TransferAgencyDates](docs/TransferAgencyDates.md)
1742
1750
  - [TransitionEvent](docs/TransitionEvent.md)
1743
1751
  - [TranslateEntitiesInlinedRequest](docs/TranslateEntitiesInlinedRequest.md)
1744
1752
  - [TranslateEntitiesRequest](docs/TranslateEntitiesRequest.md)
@@ -1,5 +1,5 @@
1
- lusid/__init__.py,sha256=4Hw7NZgANwcliapBeQKw2nNcY00_gtLirIYETT5vJog,137886
2
- lusid/api/__init__.py,sha256=EQ3XKHP9QY2QeLD97_6ePDtx6g6tykdAzwWWHaW0dYo,6386
1
+ lusid/__init__.py,sha256=MS2nJ4n5r6HfgM4ia9nhH1EySkuAvcbTnZmJDAOye4A,138538
2
+ lusid/api/__init__.py,sha256=rDMCQ5xxj5K43PAE4v9joIu4G8XxM2QNi2Dj0vFQA8A,6471
3
3
  lusid/api/abor_api.py,sha256=oAvtx9mQGWa5ZQRKjhzkJJH110GiIqiPIefIYNoiT14,166017
4
4
  lusid/api/abor_configuration_api.py,sha256=3Y3KwOOJqPsCsl7rfP-ScCYrKvVsQSP5adbsAsJ9G1s,74238
5
5
  lusid/api/address_key_definition_api.py,sha256=m1nlEYBeggP_6XUW-i7ah9G0Vmz8hNuKuYtM6Z9VTzA,31350
@@ -34,7 +34,7 @@ lusid/api/identifier_definitions_api.py,sha256=x79uhIBI0BJITjwmE7oPMWFOtox60FrrL
34
34
  lusid/api/instrument_event_types_api.py,sha256=RHuGNd8Xf8x0vyvAUFwRNgEB_kpzQTtbsBwlFC3QJcs,79862
35
35
  lusid/api/instrument_events_api.py,sha256=o_VlUMrovreM3P6N84W5jMUrZmc6tVsvD7Ckhf05sfw,57764
36
36
  lusid/api/instruments_api.py,sha256=-pOWq9bPcXvXULKV-FPWlRugZuBEPwVp2oPX91PEzTs,298533
37
- lusid/api/investor_records_api.py,sha256=Acz5CdJuLH9zKm2Iq5EitSJ42u-U6G2AOckD9EQvoFo,37860
37
+ lusid/api/investor_records_api.py,sha256=AFKyHa5kFyddjqXYtT7x3PUlQzLEbuxt4fuodVVmuCg,58633
38
38
  lusid/api/legacy_compliance_api.py,sha256=DvApZDZ-_yzZ72e9oqKBK7Ey8oEaavGtw5cgxhEkV0s,93819
39
39
  lusid/api/legal_entities_api.py,sha256=3rCwRIrEXwKH2T8-16ZizKx_Hyi8YeEfrZFpCJX5Hfs,257649
40
40
  lusid/api/order_graph_api.py,sha256=-oaauVeAJxJsK6AHscON1nODEDbv8dcXlKNb6ilBOAU,44022
@@ -72,11 +72,12 @@ lusid/api/timelines_api.py,sha256=1Gsn61jN6WZ_OaggLKjfvkX8f1gjgazQaAnEd8z2B-g,99
72
72
  lusid/api/transaction_configuration_api.py,sha256=OHs853-U1RWs2oApEO3raiMxixxiMQMcXu566qsm5v4,103968
73
73
  lusid/api/transaction_fees_api.py,sha256=r8Gl44-WYZebyJ_Uw2stLsf3-hPi1bK6Ij64Kx0L6A8,62698
74
74
  lusid/api/transaction_portfolios_api.py,sha256=zUeIr5l_Zeh4LL7uHIcR7pxiRteqb-EHzk9Gsprmp8o,608633
75
+ lusid/api/transfer_agency_api.py,sha256=m-o3srFi7ZcUcWlO_lpOJiYZJvDSt2JLy7QPcXQoPh4,9545
75
76
  lusid/api/translation_api.py,sha256=xpRuTfwQvYBlWe6r_L2EI_uVpXqHFnEOim-i-kVQ85E,20227
76
77
  lusid/api/workspace_api.py,sha256=0pCNi3ZCRbIo0NXKa85XE7vtq0WV5YOKcQKvFlcLUaY,120708
77
78
  lusid/api_client.py,sha256=ewMTmf9SRurY8pYnUx9jy24RdldPCOa4US38pnrVxjA,31140
78
79
  lusid/api_response.py,sha256=6-gnhty6lu8MMAERt3_kTVD7UxQgWFfcjgpcq6iN5IU,855
79
- lusid/configuration.py,sha256=tnUjhDGfYB3XWnfT_DBrUWXw1jFxQJFW7gdloFGfigc,17972
80
+ lusid/configuration.py,sha256=9hcY18Xvlfye8-Mlf6nwbN2GK5q0f4CQjoaNt570U8s,17972
80
81
  lusid/exceptions.py,sha256=HIQwgmQrszLlcVCLaqex8dO0laVuejUyOMz7U2ZWJ6s,5326
81
82
  lusid/extensions/__init__.py,sha256=dzDHEzpn-9smd2-_UMWQzeyX6Ha4jGf6fnqx7qxKxNI,630
82
83
  lusid/extensions/api_client.py,sha256=GzygWg_h603QK1QS2HvAijuE2R1TnvoF6-Yg0CeM3ug,30943
@@ -91,7 +92,7 @@ lusid/extensions/rest.py,sha256=dp-bD_LMR2zAL1tmC3-urhWKLomXx7r5iGN1VteMBVQ,1601
91
92
  lusid/extensions/retry.py,sha256=EhW9OKJmGHipxN3H7eROH5DiMlAnfBVl95NQrttcsdg,14834
92
93
  lusid/extensions/socket_keep_alive.py,sha256=NGlqsv-E25IjJOLGZhXZY6kUdx51nEF8qCQyVdzayRk,1653
93
94
  lusid/extensions/tcp_keep_alive_connector.py,sha256=zaGtUsygRsxB1_4B3x39K3ILwztdhMLDv5bFZV7zmGE,3877
94
- lusid/models/__init__.py,sha256=bkzNNztWCCpvXe3su9Y9kJEZ9udnRBmXn9TVzPELhH4,130468
95
+ lusid/models/__init__.py,sha256=IrF70EJdizVcJ6nb8YKkkd2qVDTLUm6oOIjT19ttb1U,131035
95
96
  lusid/models/a2_b_breakdown.py,sha256=-FXgILrvtZXQDmvS0ARaJVGBq5LJ4AH-o3HjujFVmS4,3198
96
97
  lusid/models/a2_b_category.py,sha256=WunXUgx-dCnApPeLC8Qo5tVCX8Ywxkehib1vmNqNgNs,2957
97
98
  lusid/models/a2_b_data_record.py,sha256=qANTmV1_HUEo4l72-F8qzZjlQxOe0Onc9WPz7h-WWuY,9993
@@ -198,9 +199,12 @@ lusid/models/bool_list_compliance_parameter.py,sha256=BCbKh84VPQBh26pZIlhXhEznns
198
199
  lusid/models/branch_step.py,sha256=AaX3CSgsfqLKbJ65w4tsOszI9VO5IriZo5RjVdaZdQw,7161
199
200
  lusid/models/branch_step_request.py,sha256=xCYu1UMm-OF2In9zVjQbZ3WoTMlN5aJIWiPGb6U-qVw,6685
200
201
  lusid/models/break_code_source.py,sha256=6eGWx_Do3h18MrGN0CgX-amdrfL9n6lusdWyMmzLbiM,2384
202
+ lusid/models/bucket.py,sha256=1yLnFMTFHkbtI91UnczpMLcbabVC3ekF9mgfQQ1V1TE,5872
201
203
  lusid/models/bucketed_cash_flow_request.py,sha256=kLK-PFcbIihoiBWYO-c_e6mlL9T_Em1yUoNXbz0Hi2I,10289
202
204
  lusid/models/bucketed_cash_flow_response.py,sha256=DFdxnP1H8ymR-mETx3d0FTYBYQGplkRU28tEOPonESk,5866
203
205
  lusid/models/bucketing_schedule.py,sha256=NPKNhLsz5_trw048YicdQNLaBpSF7ocoQD2imLYhpPU,2348
206
+ lusid/models/calculate_order_dates_request.py,sha256=5CK-QGK62M2KZ99uWchkEhJD3x_9pqvBm4n-QN0KyAQ,5363
207
+ lusid/models/calculate_order_dates_response.py,sha256=gB4WeWKOuzKi_V_720a3aj0lR12KNSLA5Vt2WeBlYfE,4861
204
208
  lusid/models/calculation_info.py,sha256=Blmyf09CMHtre8thwX0vCUQQ_0pW8rH5bxIwJwVyDYo,2686
205
209
  lusid/models/calendar.py,sha256=bkZbq9lEiO44pQaMEVAc58rliOlzGoioZ2-7uJHKP3g,4883
206
210
  lusid/models/calendar_date.py,sha256=JPCvskfo9UT8QbGQzsPM2LnnDJoKnC5eriOGqRZRLLI,3880
@@ -236,8 +240,8 @@ lusid/models/cdx_credit_event.py,sha256=JYqFWigXH482RZ_vVTSsu9JAqJiWtzut3QHh2ZlV
236
240
  lusid/models/change.py,sha256=gt2vAck5JDScjVZI27AJUJl4PbXrorp3iXl29pKpyI8,5330
237
241
  lusid/models/change_history.py,sha256=UuF4fGRzB395PNnOcy02LAnbevC8qI6H7qbLPDit37w,7464
238
242
  lusid/models/change_history_action.py,sha256=LJipvCPce31vtmb4j7EQBaoolJVrf8wycx7lim33Kzg,702
239
- lusid/models/change_interval.py,sha256=_E7N6vktxAj0fj7y5LbXCdwg0zNB1qfMqjjLwXUqwQA,6410
240
- lusid/models/change_interval_with_order_management_detail.py,sha256=Vs06QY-CGtwmiiC8UT-cLN3nr9EOXc9fVPRorOgYOtU,7658
243
+ lusid/models/change_interval.py,sha256=rQidf0L457Kclf3U1A3yeVsFkdQJX3EHydow1SP2Hjk,6858
244
+ lusid/models/change_interval_with_order_management_detail.py,sha256=lQDNOJqFxy2_YRa0LPjvHqUrcQhABW3eGGtuhqiArNI,8106
241
245
  lusid/models/change_item.py,sha256=BcApB0DPFzb2BWm0h3US0thhntOOypBSEUHUEk1oYQc,4048
242
246
  lusid/models/chart_of_accounts.py,sha256=gMjWXbR5_-xljYujxYjPyvcZmD0UAOHaznOH_0UWZik,5661
243
247
  lusid/models/chart_of_accounts_properties.py,sha256=Hg6QRlKLW98Wn2WZ6bEVY93RQ-sT0W5edFEVK6AAfnY,4601
@@ -428,6 +432,7 @@ lusid/models/economic_dependency.py,sha256=HU1z1DuKPwiJcb4Ep8R8IoKOrb5ZuKUGWtRut
428
432
  lusid/models/economic_dependency_type.py,sha256=tx37PkXssBSTW8Rqm1PN8XFEKR4lEkTgnLwL0EvMh3k,1290
429
433
  lusid/models/economic_dependency_with_complex_market_data.py,sha256=szRO1DFJPRbsuwo5P6ovq7v8b7QViNVgWY7el7G36po,3283
430
434
  lusid/models/economic_dependency_with_quote.py,sha256=uOhpwpxlEK3tvjZi1W_lA24-isT_oUO4yDV24Wy6MUs,3590
435
+ lusid/models/economics.py,sha256=Q3LgYr3YzZIyLZfQLlkyf8bwCkkoGcgY5HM95bWuDHs,4739
431
436
  lusid/models/effective_range.py,sha256=QS0EvY8L0-kAuHo9I9RM4n--gbYIexnYSmtw2MPB_ts,2383
432
437
  lusid/models/election_specification.py,sha256=3VJre2H4qid96ZR5SXhXfPhvA5Oq_qqnN77I_LCmhHg,2434
433
438
  lusid/models/eligibility_calculation.py,sha256=97wEddIjii77XbgiFbEDj7W1J-t83eNMY_Vip_Qi2ZI,2558
@@ -676,15 +681,15 @@ lusid/models/mapping_rule.py,sha256=y6MqGlbd4XEY50xfwT9xQpFXOASxUrVyNOp0RiWZ_6E,
676
681
  lusid/models/mark_to_market_conventions.py,sha256=p7KJh6MPdI762O1zFyu05-wqca7odbIL4u_891fnfVo,2692
677
682
  lusid/models/market_context.py,sha256=N5ePFJA2G33zy1oGgWifd7V1UafKnQKqfEsQeXWa8X0,7828
678
683
  lusid/models/market_context_suppliers.py,sha256=Ew7wwO1kctTrgcz5iwnz3Otl8YXJQgBpjL3---pLHso,2751
679
- lusid/models/market_data_key_rule.py,sha256=hVOVfUsH7bO3PZRMfec0BEdo6xJYRKB4dOnoDN-WxxQ,13046
684
+ lusid/models/market_data_key_rule.py,sha256=WnTDRvEUhEXAV1KgjnyfFnrMbzE40nf8-7VywP3zD9A,13125
680
685
  lusid/models/market_data_options.py,sha256=FTcTycC2xaHfy5dzC4HHNzAvuIUIE6h1vaaPA1aIeTw,6831
681
686
  lusid/models/market_data_options_type.py,sha256=NlFpXuMw8cVK5czQY0h0GJhjYP_wpPuOIpin_AzXKwM,697
682
687
  lusid/models/market_data_overrides.py,sha256=iwTO6VDQEBHfqUYixnYiqVYsImN0EE4qrjEQkngrxLg,4153
683
- lusid/models/market_data_specific_rule.py,sha256=eKqzaXdY-C8uXz_cgjI3VpWTHveNlI7dR6Znk8Dt8DU,12056
688
+ lusid/models/market_data_specific_rule.py,sha256=LN5jBSJcUil0A4talEHd5NwqS4Jba52pMtye2BRz_io,12135
684
689
  lusid/models/market_data_type.py,sha256=4NyCfdwiQjP1MZK_SovXB6IVrspTU56JhmxfSdNRweU,1583
685
690
  lusid/models/market_observable_type.py,sha256=E1cl-6yHelmR1b7CarmYNgRHWxhPrFknNrXZlwYywAk,801
686
691
  lusid/models/market_options.py,sha256=bGW0MGm6cHG_BtGQ_ixI_C0ahr1AQq0rpv4oqiJYqxs,5250
687
- lusid/models/market_quote.py,sha256=0zqA0N2aUQL7wlze4dCtRFWIkSqffvleFJ0nqlfrDxQ,6570
692
+ lusid/models/market_quote.py,sha256=cKWzVco42O1x-vDPMQLUJ3lUDbBwLUqNHFiIcPo82Fo,6649
688
693
  lusid/models/mastered_instrument.py,sha256=ZBxWEgN0ULPkrCeX4481feXPcMKmMHvFVhuQMzYLPVE,11871
689
694
  lusid/models/match_criterion.py,sha256=iNh9Zv1-5wTq-WKHmHgyKn2xkU780noLtCJJq7aUjRw,6820
690
695
  lusid/models/maturity_event.py,sha256=0NbjTi2KVIDQyY0Fskiad_xzDR7qDa0FBWDM4NY4h9s,10477
@@ -752,7 +757,7 @@ lusid/models/order_request.py,sha256=vA90s8q8Y58x--4KpJJ6O5fWtoauOBBhusMdpherXDA
752
757
  lusid/models/order_set_request.py,sha256=b7FHKZWawLGR83gRHpShjtdYxvlvyMdLhQGLi2HTjmQ,2948
753
758
  lusid/models/order_update_request.py,sha256=eXPD9g6f-W5C42JGpNyOijrnPO7jmYERWNgXMfu46VU,5371
754
759
  lusid/models/otc_confirmation.py,sha256=05mvXvcPLgyCNIHXN7g9L5nqAZORKrQA_wHW-fHe2O0,2651
755
- lusid/models/output_transaction.py,sha256=G_YVh-B76LTQGlx8dLGAZbdditj7uwX7TxkIeVPho_8,21098
760
+ lusid/models/output_transaction.py,sha256=9icL7XvV2xlSnqqhISgf8H4pagX0wBml7xcxxwtPeLQ,21951
756
761
  lusid/models/output_transition.py,sha256=R_EGRE5yzpcgTth20s58MA5a3QVRA7ZvNtkxfAKtNCU,4219
757
762
  lusid/models/package.py,sha256=MjIyvz3UaXqJoS_0KiR6BKikHcBaJBV4iZYqo7AmslQ,5685
758
763
  lusid/models/package_request.py,sha256=4sYvxIYutClYd8qLoZxZW96XMZn5jeyhcfpsvyXZfek,4615
@@ -916,8 +921,8 @@ lusid/models/quote_access_metadata_rule_id.py,sha256=P0qZPdCTH1O8ZKwFIVG_lqV_xM-
916
921
  lusid/models/quote_dependency.py,sha256=OM9lo-nq1ytDmafBJ9P5d8TSPc3Z9A5FIdJA0nq08rg,7802
917
922
  lusid/models/quote_id.py,sha256=w0SLJOhCtOB9GM2eFKdjeYerX3efm017Q_0UkhMSHh4,2628
918
923
  lusid/models/quote_instrument_id_type.py,sha256=xLx1GjV_zFUIJcpw2JmCyWmzd9QR6S7ORFajcjtAHBw,886
919
- lusid/models/quote_series_id.py,sha256=y8anTghiWPqkgsMMbbqKXl-kw_SLOwRM13pkswIOnEo,12341
920
- lusid/models/quote_type.py,sha256=18LUYnfqUvhGJ0utX4QZIDjmZGXxHT1_3dooUPVi5OI,1088
924
+ lusid/models/quote_series_id.py,sha256=qZQBx0N4oYgQHVVdOLyAB8zxkwu5QSZrrwEHbrWxS-U,12420
925
+ lusid/models/quote_type.py,sha256=PcgNMkDIwcHRwNejD4cQOKdo-NQfRDXb1Cr25QQvAKY,1144
921
926
  lusid/models/raw_vendor_event.py,sha256=0zGWGBZlgLNygRZwnvkZiKIC00GiYLYCZquUWqYVkQQ,11248
922
927
  lusid/models/re_open_period_diary_entry_request.py,sha256=cbx4lBx2lCXSe2eaVTSMaDhWcPmBCg5WchApthismAc,2620
923
928
  lusid/models/realised_gain_loss.py,sha256=JG2_H7LIxOQFsKjSyLdHQzmbqWvXpsxbqm_qy70GE68,7400
@@ -998,6 +1003,7 @@ lusid/models/resource_list_of_i_unit_definition_dto.py,sha256=LjAYsbkiNd7IqusJ38
998
1003
  lusid/models/resource_list_of_instrument_cash_flow.py,sha256=M5myVdhSbr3DGzYQNeysXMqP1AnRhjqjwXBZDgFmWyI,4408
999
1004
  lusid/models/resource_list_of_instrument_event_holder.py,sha256=YTl-QFbe5zhYhcft0F0FiwZ1mmBHlhmVdoc8ITSzgkE,4444
1000
1005
  lusid/models/resource_list_of_instrument_id_type_descriptor.py,sha256=wvSt9-3hPMGxxewZMXB09xHtIWc9qpzUho1Saa5h6-c,4505
1006
+ lusid/models/resource_list_of_investor_record.py,sha256=BlYAemlwpa_s2fx35Y6P5-TUCimjawZY-ENiVJ4qqLM,4359
1001
1007
  lusid/models/resource_list_of_legal_entity.py,sha256=DrOUEHsXTuxTeZJ7d4Il4EjKe2fp7NTdmx81Xk-CrnM,4323
1002
1008
  lusid/models/resource_list_of_list_complex_market_data_with_meta_data_response.py,sha256=XRA9Fb5yJjj7FaNoWvfZuF6EPobEiXAKvob1d_GImqs,4689
1003
1009
  lusid/models/resource_list_of_mapping.py,sha256=_CdwA1OEdaeE75hTupxL1eVrJeFTKokx6s0-cKPXoL4,4274
@@ -1152,7 +1158,7 @@ lusid/models/transaction_property_map.py,sha256=-wHRWG3detIms7R03Z1LP8Ll_5h1OKtU
1152
1158
  lusid/models/transaction_property_mapping.py,sha256=zR68kn6GCZnWPxq9d0bof8-TnZj-jSrWfHGOrfN5kTo,3056
1153
1159
  lusid/models/transaction_property_mapping_request.py,sha256=1gRNyMZDfayaDSY5fp7nxTWFTMIjzabLIvfwxMk0BT8,3111
1154
1160
  lusid/models/transaction_query_mode.py,sha256=q3QNcFSP-LwfdQF_yRUOZMd6ElemQm03yOEQdQrCjvE,699
1155
- lusid/models/transaction_query_parameters.py,sha256=9c7HCPVkE77ctVzGAwJTKtmcrAROoPporSOU-dP1S2c,7555
1161
+ lusid/models/transaction_query_parameters.py,sha256=AIGQLau7ZeogFvvxFYnT94Di4tQPaW8GDbk9N_8y4Eo,7829
1156
1162
  lusid/models/transaction_reconciliation_request.py,sha256=0MtuzOqdGdToiO7tbffVR4drmNAR8Ygzcosqt4sECt4,4526
1157
1163
  lusid/models/transaction_reconciliation_request_v2.py,sha256=cgzBwUa3lIRYksf1xiKEN85iUHKp2_cEnFhHBlsvp-4,6178
1158
1164
  lusid/models/transaction_request.py,sha256=s6OVPLAxPDbUMU4gLN_XNX9ngdlKdPBgGeRDBg7QzdA,10982
@@ -1171,6 +1177,7 @@ lusid/models/transaction_type_movement.py,sha256=nX7PXR7qLOsQNrEqL_XYq040uvVGIls
1171
1177
  lusid/models/transaction_type_property_mapping.py,sha256=32rbl8i3SsaAqT97yz3Vfoq71pvScKpgJ3XYipFemDg,4004
1172
1178
  lusid/models/transaction_type_request.py,sha256=99W8xIumF_fhZAeIzf88bFPohCV_4WlNTS1FuQtCXLQ,5353
1173
1179
  lusid/models/transactions_reconciliations_response.py,sha256=40rrkANUl0DMhuDH4q_mk4_83FSMY7Xc0rfLFJbx9ko,3315
1180
+ lusid/models/transfer_agency_dates.py,sha256=8YkoN2L04Cscn186nlgf1q1s3-q13nw5hyYRrl6mTOY,3590
1174
1181
  lusid/models/transition_event.py,sha256=iaLSatclVbeV0n0CvwauNAwixduIpGUkDhdrvHv_cZk,12617
1175
1182
  lusid/models/translate_entities_inlined_request.py,sha256=_PzemiVHZMV4guBnuMkX8RJjU7MK2bJfZVcHxwcBGzE,3766
1176
1183
  lusid/models/translate_entities_request.py,sha256=Nsp48fINKKIbgH1J-sjrTlRT4xFjNjZD1st-LYgvwZs,4022
@@ -1313,6 +1320,6 @@ lusid/models/year_month_day.py,sha256=gwSoxFwlD_wffKdddo1wfvAcLq3Cht3FHQidiaHzAA
1313
1320
  lusid/models/yield_curve_data.py,sha256=I1ZSWxHMgUxj9OQt6i9a4S91KB4_XtmrfFxpN_PV3YQ,9561
1314
1321
  lusid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1315
1322
  lusid/rest.py,sha256=HQT__5LQEMu6_1sLKvYj-DI4FH1DJXBIPYfZCTTyrY4,13431
1316
- lusid_sdk-2.1.805.dist-info/METADATA,sha256=zzgNURHkrKZ8BoChIG99-_mg1eLBfK7YWJZUCHIo2eg,220367
1317
- lusid_sdk-2.1.805.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1318
- lusid_sdk-2.1.805.dist-info/RECORD,,
1323
+ lusid_sdk-2.1.807.dist-info/METADATA,sha256=KfcP9in-nDehhBrH6lNw7elMo4tUmKTzveYwvJ8RREo,221153
1324
+ lusid_sdk-2.1.807.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
1325
+ lusid_sdk-2.1.807.dist-info/RECORD,,