Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Guardian

import type { Guardian } from "https://googleapis.deno.dev/v1/classroom:v1.ts";

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

interface Guardian {
guardianId?: string;
guardianProfile?: UserProfile;
invitedEmailAddress?: string;
studentId?: string;
}

§Properties

§
guardianId?: string
[src]

Identifier for the guardian.

§
guardianProfile?: UserProfile
[src]

User profile for the guardian.

§
invitedEmailAddress?: string
[src]

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

§
studentId?: string
[src]

Identifier for the student to whom the guardian relationship applies.