13 lines
217 B
Python
13 lines
217 B
Python
from typing import TypedDict, Optional
|
|
|
|
|
|
class Message(TypedDict):
|
|
id: int
|
|
chat: str
|
|
author: int
|
|
body: str
|
|
createdAt: int
|
|
replyTo: Optional[int]
|
|
createdAt: int
|
|
updatedAt: Optional[int]
|