inbox/models/member.py

11 lines
183 B
Python
Raw Normal View History

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