Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/gesso/types/params.ts>UpdateSingleRubricAssessmentParams

A TypeScript API client for Canvas LMS
Latest
interface UpdateSingleRubricAssessmentParams
import { type UpdateSingleRubricAssessmentParams } from "https://deno.land/x/gesso@v0.1.2/types/params.ts";

Properties

optional
id: number

The id of the rubric assessment

optional
courseid: number

The id of the course

optional
rubricassociationid: number

The id of the object with which this rubric assessment is associated

optional
provisional: string

(optional) Indicates whether this assessment is provisional, defaults to false.

optional
final: string

(optional) Indicates a provisional grade will be marked as final. It only takes effect if the provisional param is passed as true. Defaults to false.

optional
gradedanonymously: boolean

(optional) Defaults to false

optional
rubricassessment: unknown

A Hash of data to complement the rubric assessment: The user id that refers to the person being assessed rubric_assessment[user_id] Assessment type. There are only three valid types: 'grading', 'peer_review', or 'provisional_grade' rubric_assessment[assessment_type] The points awarded for this row. rubric_assessment[criterion_id][points] Comments to add for this row. rubric_assessment[criterion_id][comments] For each criterion_id, change the id by the criterion number, ex: criterion_123 If the criterion_id is not specified it defaults to false, and nothing is updated.