13 lines
224 B
Python
13 lines
224 B
Python
from typing import TypedDict, Optional
|
|
|
|
|
|
class Message(TypedDict):
|
|
id: int
|
|
chat_id: str
|
|
author: int
|
|
body: str
|
|
created_at: int
|
|
reply_to: Optional[int]
|
|
created_at: int
|
|
updated_at: Optional[int]
|