Struct google_classroom1::GuardianInvitation[][src]

pub struct GuardianInvitation {
    pub invitation_id: Option<String>,
    pub student_id: Option<String>,
    pub creation_time: Option<String>,
    pub state: Option<String>,
    pub invited_email_address: Option<String>,
}

An invitation to become the guardian of a specified user, sent to a specified email address.

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

Unique identifier for this invitation.

Read-only.

ID of the student (in standard format)

The time that this invitation was created.

Read-only.

The state that this invitation is in.

Email address that the invitation was sent to. This field is only visible to domain administrators.

Trait Implementations

impl Default for GuardianInvitation
[src]

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

impl Clone for GuardianInvitation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GuardianInvitation
[src]

Formats the value using the given formatter. Read more

impl RequestValue for GuardianInvitation
[src]

impl ResponseResult for GuardianInvitation
[src]

Auto Trait Implementations