Source code for harp_apps.notifications.settings

from typing import Optional

from harp.config import Configurable


[docs] class NotificationsSettings(Configurable): enabled: bool = True slack_webhook_url: Optional[str] = None google_chat_webhook_url: Optional[str] = None