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