UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

15 lines (14 loc) 406 B
interface CanvasAssignmentOverride { id: number; assignment_id: number; student_ids?: number[] | null; group_id?: number | null; course_section_id?: number | null; title?: string | null; due_at?: string | null; all_day?: boolean | null; all_day_date?: string | null; unlock_at?: string | null; lock_at?: string | null; } export default CanvasAssignmentOverride;