We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737d03f commit 68b54a1Copy full SHA for 68b54a1
casparser/types.py
@@ -27,7 +27,9 @@ class TransactionType(TypedDict):
27
balance: Union[Decimal, float]
28
29
30
-class SchemeValuation(TypedDict):
+class SchemeValuationType(TypedDict):
31
+ """Scheme valuation as of a given date."""
32
+
33
date: Union[date, str]
34
value: Union[Decimal, float]
35
@@ -42,7 +44,7 @@ class SchemeType(TypedDict, total=False):
42
44
rta: str
43
45
open: Union[Decimal, float]
46
close: Union[Decimal, float]
- valuation: str
47
+ valuation: SchemeValuationType
48
transactions: List[TransactionType]
49
50
0 commit comments