inbox/validators/message.py
Untone 5c5cd4bf00
Some checks failed
deploy / deploy (push) Failing after 1m11s
fieldsfix
2023-11-16 18:28:16 +03:00

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]