summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/structs.go b/structs.go
index bf75787..2da2899 100644
--- a/structs.go
+++ b/structs.go
@@ -54,3 +54,9 @@ type Enrollment struct {
54 EnrollmentState string `json:"enrollment_state"` 54 EnrollmentState string `json:"enrollment_state"`
55 LimitPrivilegesToCourseSection bool `json:"limit_privileges_to_course_section"` 55 LimitPrivilegesToCourseSection bool `json:"limit_privileges_to_course_section"`
56} 56}
57
58type ExternalTool struct {
59 ID int `json:"id"`
60 URL string `json:"url"`
61 Status string `json:"status"`
62}