Google Apps Script API
    Preparing search index...
    interface StudentsCollection {
        create(resource: Student, courseId: string): Student;
        create(resource: Student, courseId: string, optionalArgs: object): Student;
        get(courseId: string, userId: string): Student;
        list(courseId: string): ListStudentsResponse;
        list(courseId: string, optionalArgs: object): ListStudentsResponse;
        remove(courseId: string, userId: string): void;
    }
    Index

    Methods