2023-10-14 14:55:51 +00:00
|
|
|
from typing import TypedDict, Optional
|
|
|
|
|
|
|
|
|
|
|
|
class ChatMember(TypedDict):
|
|
|
|
id: int
|
|
|
|
slug: str
|
|
|
|
name: str
|
2023-11-24 02:20:16 +00:00
|
|
|
pic: Optional[str]
|
2023-11-16 14:58:14 +00:00
|
|
|
last_seen: int
|
2023-10-14 14:55:51 +00:00
|
|
|
online: Optional[bool]
|