inbox/validators/member.py
2023-10-14 17:55:51 +03:00

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]