Struct google_classroom1::Guardian[][src]

pub struct Guardian {
    pub guardian_id: Option<String>,
    pub invited_email_address: Option<String>,
    pub student_id: Option<String>,
    pub guardian_profile: Option<UserProfile>,
}

Association between a student and a guardian of that student. The guardian may receive information about the student's course work.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Identifier for the guardian.

The email address to which the initial guardian invitation was sent. This field is only visible to domain administrators.

Identifier for the student to whom the guardian relationship applies.

User profile for the guardian.

Trait Implementations

impl Default for Guardian
[src]

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

impl Clone for Guardian
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Guardian
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for Guardian
[src]

Auto Trait Implementations

impl Send for Guardian

impl Sync for Guardian