You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Stub to indicate that arbitrary properties are accepted.
47
+
# To access properties that are not valid identifiers you can use `getattr`, e.g.
48
+
# `getattr(obj, '$type')`
49
+
def__getattr__(self, attr: str) ->object: ...
50
+
else:
51
+
__pydantic_extra__: Dict[str, object]
52
+
42
53
43
54
classIntrafiBalance(BaseModel):
44
55
"""
45
56
When using IntraFi, each account's balance over the standard FDIC insurance amount is swept to various other institutions. Funds are rebalanced across banks as needed once per business day.
46
57
"""
47
58
48
-
id: str
49
-
"""The identifier of this balance."""
50
-
51
59
balances: List[Balance]
52
60
"""Each entry represents a balance held at a different bank.
53
61
@@ -77,3 +85,15 @@ class IntrafiBalance(BaseModel):
77
85
78
86
For this resource it will always be `intrafi_balance`.
79
87
"""
88
+
89
+
ifTYPE_CHECKING:
90
+
# Some versions of Pydantic <2.8.0 have a bug and don’t allow assigning a
91
+
# value to this field, so for compatibility we avoid doing it at runtime.
0 commit comments