inbox/models/member.py

11 lines
179 B
Python
Raw Permalink Normal View History

2023-12-17 17:13:17 +00:00
from typing import Optional, TypedDict
2023-10-14 14:55:51 +00:00
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]