Show / Hide Table of Contents

Class Student

Student in a course.

Inheritance
System.Object
Student
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Classroom.v1.Data
Assembly: Google.Apis.Classroom.v1.dll
Syntax
public class Student : IDirectResponseSchema

Properties

CourseId

Identifier of the course.

Read-only.

Declaration
[JsonProperty("courseId")]
public virtual string CourseId { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Profile

Global user information for the student.

Read-only.

Declaration
[JsonProperty("profile")]
public virtual UserProfile Profile { get; set; }
Property Value
Type Description
UserProfile

StudentWorkFolder

Information about a Drive Folder for this student's work in this course. Only visible to the student and domain administrators.

Read-only.

Declaration
[JsonProperty("studentWorkFolder")]
public virtual DriveFolder StudentWorkFolder { get; set; }
Property Value
Type Description
DriveFolder

UserId

Identifier of the user.

When specified as a parameter of a request, this identifier can be one of the following:

  • the numeric identifier for the user * the email address of the user * the string literal "me", indicating the requesting user
Declaration
[JsonProperty("userId")]
public virtual string UserId { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top