11 lines
179 B
Python
11 lines
179 B
Python
from typing import TypedDict, Optional
|
|
|
|
|
|
class ChatMember(TypedDict):
|
|
id: int
|
|
slug: str
|
|
name: str
|
|
pic: Optional[str]
|
|
last_seen: int
|
|
online: Optional[bool]
|