File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -3511,6 +3511,26 @@ export type CoreCourseViewCourseWSResponse = {
35113511 warnings?: CoreWSExternalWarning[];
35123512};
35133513
3514+ /**
3515+ * Params of core_course_view_module_instance_list WS.
3516+ *
3517+ * WS Description: Logs that a module instance list has been viewed on an external application.
3518+ */
3519+ type CoreCourseViewModuleInstanceListWSParams = {
3520+ courseid: number; // Course id.
3521+ modname: string; // The module name, or "resource" if viewing resources list.
3522+ };
3523+
3524+ /**
3525+ * Data returned by core_course_view_module_instance_list WS.
3526+ *
3527+ * WS Description: Logs that a module instance list has been viewed on an external application.
3528+ */
3529+ export type CoreCourseViewModuleInstanceListWSResponse = {
3530+ status: boolean; // Status: true if success.
3531+ warnings?: CoreWSExternalWarning[];
3532+ };
3533+
35143534/**
35153535 * Params of core_enrol_get_course_enrolment_methods WS.
35163536 *
You can’t perform that action at this time.
0 commit comments