frontend
    Preparing search index...

    Object containing information about a student under an advisor.

    type Student = {
        CreditsEarned: number | null;
        GPA: number | null;
        ID?: string;
        IntendedGraduationTerm: string | null;
        Name: string | null;
    }
    Index

    Properties

    CreditsEarned: number | null
    GPA: number | null
    ID?: string
    IntendedGraduationTerm: string | null
    Name: string | null