/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Reading Platform API * Reading Platform Backend Service API Documentation * OpenAPI spec version: 1.0.0 */ /** * 通知设置响应 */ export interface NotificationSettingsResponse { /** 启用邮件通知 */ emailEnabled?: boolean; /** 启用短信通知 */ smsEnabled?: boolean; /** 启用站内通知 */ inAppEnabled?: boolean; /** 任务完成通知 */ taskCompletionNotify?: boolean; /** 课程提醒通知 */ courseReminderNotify?: boolean; }