frontend
    Preparing search index...

    Interface EventAlert

    Interface for storing information about an event.

    interface EventAlert {
        date: string;
        description: string;
        id: number;
        name: string;
        status: AlertStatus;
        time: string;
        type: "Event";
    }

    Hierarchy (View Summary)

    Index

    Properties

    date: string

    Date of the alert.

    description: string

    Description of the event.

    id: number

    Unique identifier for student alert.

    name: string

    Title of the alert.

    status: AlertStatus

    Seen / Unseen

    time: string

    Time of the alert.

    type: "Event"

    Seen / Unseen