inbox/validators/member.py

11 lines
182 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]
lastSeen: int
online: Optional[bool]