caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
18 lines (16 loc) • 472 B
text/typescript
interface CanvasCustomColumn {
// The ID of the custom gradebook column
id: number,
// When true, this column's visibility will be toggled in the Gradebook when a
// user selects to show or hide notes
teacher_notes: boolean,
// header text
title: string,
// column order
position: number,
// won't be displayed if hidden is true
hidden: boolean,
// won't be editable in the gradebook UI
read_only: boolean,
};
export default CanvasCustomColumn;