Show / Hide Table of Contents

Class GuardianInvitation

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

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

Properties

CreationTime

The time that this invitation was created.

Read-only.

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

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

InvitationId

Unique identifier for this invitation.

Read-only.

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

InvitedEmailAddress

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

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

State

The state that this invitation is in.

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

StudentId

ID of the student (in standard format)

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

Implements

IDirectResponseSchema
Back to top