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