| Modifier and Type | Class and Description |
|---|---|
class |
Classroom.Courses.Aliases
The "aliases" collection of methods.
|
class |
Classroom.Courses.Announcements
The "announcements" collection of methods.
|
class |
Classroom.Courses.CourseWork
The "courseWork" collection of methods.
|
class |
Classroom.Courses.CourseWorkMaterials
The "courseWorkMaterials" collection of methods.
|
class |
Classroom.Courses.Create |
class |
Classroom.Courses.Delete |
class |
Classroom.Courses.Get |
class |
Classroom.Courses.List |
class |
Classroom.Courses.Patch |
class |
Classroom.Courses.Students
The "students" collection of methods.
|
class |
Classroom.Courses.Teachers
The "teachers" collection of methods.
|
class |
Classroom.Courses.Topics
The "topics" collection of methods.
|
class |
Classroom.Courses.Update |
| Constructor and Description |
|---|
Courses() |
| Modifier and Type | Method and Description |
|---|---|
Classroom.Courses.Aliases |
aliases()
An accessor for creating requests from the Aliases collection.
|
Classroom.Courses.Announcements |
announcements()
An accessor for creating requests from the Announcements collection.
|
Classroom.Courses.CourseWork |
courseWork()
An accessor for creating requests from the CourseWork collection.
|
Classroom.Courses.CourseWorkMaterials |
courseWorkMaterials()
An accessor for creating requests from the CourseWorkMaterials collection.
|
Classroom.Courses.Create |
create(Course content)
Creates a course.
|
Classroom.Courses.Delete |
delete(String id)
Deletes a course.
|
Classroom.Courses.Get |
get(String id)
Returns a course.
|
Classroom.Courses.List |
list()
Returns a list of courses that the requesting user is permitted to view, restricted to those that
match the request.
|
Classroom.Courses.Patch |
patch(String id,
Course content)
Updates one or more fields in a course.
|
Classroom.Courses.Students |
students()
An accessor for creating requests from the Students collection.
|
Classroom.Courses.Teachers |
teachers()
An accessor for creating requests from the Teachers collection.
|
Classroom.Courses.Topics |
topics()
An accessor for creating requests from the Topics collection.
|
Classroom.Courses.Update |
update(String id,
Course content)
Updates a course.
|
public Classroom.Courses.Create create(Course content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.content - the CourseIOExceptionpublic Classroom.Courses.Delete delete(String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - Identifier of the course to delete. This identifier can be either the Classroom-assigned identifier
or an alias.IOExceptionpublic Classroom.Courses.Get get(String id) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - Identifier of the course to return. This identifier can be either the Classroom-assigned identifier
or an alias.IOExceptionpublic Classroom.Courses.List list() throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.IOExceptionpublic Classroom.Courses.Patch patch(String id, Course content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - Identifier of the course to update. This identifier can be either the Classroom-assigned identifier
or an alias.content - the CourseIOExceptionpublic Classroom.Courses.Update update(String id, Course content) throws IOException
AbstractGoogleClientRequest.execute() method to invoke the remote operation.id - Identifier of the course to update. This identifier can be either the Classroom-assigned identifier
or an alias.content - the CourseIOExceptionpublic Classroom.Courses.Aliases aliases()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.Aliases.List request = classroom.aliases().list(parameters ...)
public Classroom.Courses.Announcements announcements()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.Announcements.List request = classroom.announcements().list(parameters ...)
public Classroom.Courses.CourseWork courseWork()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.CourseWork.List request = classroom.courseWork().list(parameters ...)
public Classroom.Courses.CourseWorkMaterials courseWorkMaterials()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.CourseWorkMaterials.List request = classroom.courseWorkMaterials().list(parameters ...)
public Classroom.Courses.Students students()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.Students.List request = classroom.students().list(parameters ...)
public Classroom.Courses.Teachers teachers()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.Teachers.List request = classroom.teachers().list(parameters ...)
public Classroom.Courses.Topics topics()
The typical use is:
Classroom classroom = new Classroom(...);Classroom.Topics.List request = classroom.topics().list(parameters ...)
Copyright © 2011–2022 Google. All rights reserved.