types: Add ProfileDataElementUpdateDict.

Signed-off-by: Zixuan James Li <p359101898@gmail.com>
This commit is contained in:
Zixuan James Li 2022-07-08 11:11:34 -04:00 committed by Tim Abbott
parent b210c22329
commit c7f75f071e
1 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,11 @@ class ProfileDataElement(ProfileDataElementBase):
rendered_value: Optional[str]
class ProfileDataElementUpdateDict(TypedDict):
id: int
value: ProfileDataElementValue
ProfileData = List[ProfileDataElement]
FieldElement = Tuple[int, Promise, Validator[ProfileDataElementValue], Callable[[Any], Any], str]