Source code for nisystemlink.clients.notification.models._message_template
from typing import Dict
from ._base_notification_metadata import BaseNotificationMetadata
[docs]class MessageTemplate(BaseNotificationMetadata):
"""Model defining the notification content structure."""
interpreting_service_name: str
"""Name of the interpreting service"""
fields: Dict[str, str]
"""Template fields for message."""