inbox/validators/member.py
Untone c22b560bcf
All checks were successful
deploy / deploy (push) Successful in 1m17s
snake-case
2023-11-16 17:58:14 +03:00

11 lines
183 B
Python

from typing import TypedDict, Optional
class ChatMember(TypedDict):
id: int
slug: str
name: str
userpic: Optional[str]
last_seen: int
online: Optional[bool]