mirror of
https://github.com/langgenius/dify.git
synced 2026-09-05 08:48:10 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: hjlarry <hjlarry@163.com>
39 lines
800 B
Python
39 lines
800 B
Python
"""Framework-independent notification contracts."""
|
|
|
|
from collections.abc import Mapping
|
|
from typing import NamedTuple
|
|
|
|
|
|
class NotificationContent(NamedTuple):
|
|
lang: str
|
|
title: str
|
|
subtitle: str
|
|
body: str
|
|
title_pic_url: str
|
|
|
|
|
|
class AccountNotification(NamedTuple):
|
|
notification_id: str | None
|
|
frequency: str | None
|
|
contents: Mapping[str, NotificationContent]
|
|
|
|
|
|
class AccountNotificationBatch(NamedTuple):
|
|
should_show: bool
|
|
notifications: tuple[AccountNotification, ...]
|
|
|
|
|
|
class NotificationItem(NamedTuple):
|
|
notification_id: str | None
|
|
frequency: str | None
|
|
lang: str
|
|
title: str
|
|
subtitle: str
|
|
body: str
|
|
title_pic_url: str
|
|
|
|
|
|
class NotificationResult(NamedTuple):
|
|
should_show: bool
|
|
notifications: tuple[NotificationItem, ...]
|