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 @@ -8203,6 +8203,26 @@ type AddonModAssignLockSubmissionsWSParams = {
82038203 */
82048204export type AddonModAssignLockSubmissionsWSResponse = CoreWSExternalWarning[];
82058205
8206+ /**
8207+ * Params of mod_assign_remove_submission WS.
8208+ *
8209+ * WS Description: Remove submission.
8210+ */
8211+ type AddonModAssignRemoveSubmissionWSParams = {
8212+ userid: number; // User id.
8213+ assignid: number; // Assignment instance id.
8214+ };
8215+
8216+ /**
8217+ * Data returned by mod_assign_remove_submission WS.
8218+ *
8219+ * WS Description: Remove submission.
8220+ */
8221+ export type AddonModAssignRemoveSubmissionWSResponse = {
8222+ status: boolean; // True if the submission was successfully removed and false if was not.
8223+ warnings?: CoreWSExternalWarning[];
8224+ };
8225+
82068226/**
82078227 * Params of mod_assign_reveal_identities WS.
82088228 *
You can’t perform that action at this time.
0 commit comments