Commit 718a89a3 by Oleksandr Barabash

PAmessage.content changed from any to Any

parent a2178a06
""" TTL record for the messages in database """
from dataclasses import dataclass, field
from typing import Optional
from typing import Optional, Any
from entities.json.camel_case_mixin import CamelCaseMixin
......@@ -9,4 +9,4 @@ from entities.json.camel_case_mixin import CamelCaseMixin
class TTLRecord(CamelCaseMixin):
""" Notification TTL """
ttl: Optional[int] = field(default=None)
content: Optional[any] = field(default=None)
content: Optional[Any] = field(default=None)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment