Show / Hide Table of Contents

Class GradeHistory

The history of each grade on this submission.

Inheritance
System.Object
GradeHistory
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 GradeHistory : IDirectResponseSchema

Properties

ActorUserId

The teacher who made the grade change.

Declaration
[JsonProperty("actorUserId")]
public virtual string ActorUserId { 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

GradeChangeType

The type of grade change at this time in the submission grade history.

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

GradeTimestamp

When the grade of the submission was changed.

Declaration
[JsonProperty("gradeTimestamp")]
public virtual object GradeTimestamp { get; set; }
Property Value
Type Description
System.Object

MaxPoints

The denominator of the grade at this time in the submission grade history.

Declaration
[JsonProperty("maxPoints")]
public virtual double? MaxPoints { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

PointsEarned

The numerator of the grade at this time in the submission grade history.

Declaration
[JsonProperty("pointsEarned")]
public virtual double? PointsEarned { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
Back to top