Struct google_classroom1::GradeHistory[][src]

pub struct GradeHistory {
    pub grade_timestamp: Option<String>,
    pub max_points: Option<f64>,
    pub points_earned: Option<f64>,
    pub actor_user_id: Option<String>,
    pub grade_change_type: Option<String>,
}

The history of each grade on this submission.

This type is not used in any activity, and only used as part of another schema.

Fields

When the grade of the submission was changed.

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

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

The teacher who made the grade change.

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

Trait Implementations

impl Default for GradeHistory
[src]

Returns the "default value" for a type. Read more

impl Clone for GradeHistory
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GradeHistory
[src]

Formats the value using the given formatter. Read more

impl Part for GradeHistory
[src]

Auto Trait Implementations