UNPKG

caccl-api

Version:

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

17 lines (16 loc) 543 B
import CanvasProgress from './CanvasProgress'; interface CanvasGroupCategory { id: number; name: string; role: ('communities' | 'student_organized' | 'imported'); self_signup?: ('restricted' | 'enabled' | null); auto_leader?: ('random' | 'first' | null); context_type: string; account_id: number; course_id?: number | null; group_limit?: number | null; sis_group_category_id?: string | null; sis_import_id?: number | null; progress?: CanvasProgress | null; } export default CanvasGroupCategory;