/** * Serializer for testing notification template */ export type NotificationTemplateTest = { /** * Optional context variables for template rendering (e.g., {'course_name': 'Test Course'}) */ context?: any; /** * Use realistic sample data for this notification type. Set False for minimal context. */ use_sample_context?: boolean; };