Struct google_classroom1::GradeHistory[][src]

pub struct GradeHistory {
    pub grade_timestamp: Option<String>,
    pub actor_user_id: Option<String>,
    pub points_earned: Option<f64>,
    pub max_points: Option<f64>,
    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 teacher who made the grade change.

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

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

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