/** * Serializer for test notification response */ export type NotificationTemplateTestResponse = { /** * Whether the test email was sent successfully */ success: boolean; /** * Description of the result */ message: string; /** * Email address the test was sent to */ recipient: string; };