edu.ksu.canvas.enums.SectionIncludes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of canvas-api Show documentation
Show all versions of canvas-api Show documentation
A native Java library to talk to the Canvas REST API
package edu.ksu.canvas.enums;
public enum SectionIncludes {
STUDENTS,
AVATAR_URL,
ENROLLMENTS,
TOTAL_STUDENTS,
PASSBACK_STATUS;
@Override
public String toString() {
return name().toLowerCase();
}
}