Source code for mi.types.reaction

from __future__ import annotations

from typing import TYPE_CHECKING, TypedDict

if TYPE_CHECKING:
    from mi.types import UserPayload

__all__ = ('NoteReactionPayload',)


[docs]class NoteReactionPayload(TypedDict): id: str created_at: str user: UserPayload type: str