Represents an event with various attributes defining its details.

Activity

interface Activity {
    _id?: string;
    attendanceRequired: boolean;
    createdAt: DateTime;
    date: DateTime;
    deleted: boolean;
    description: string;
    location: string;
    name: string;
    official: boolean;
    semesterId: string;
    updatedAt: DateTime;
}

Hierarchy (View Summary)

Properties

_id?: string
attendanceRequired: boolean

Whether attendance is required.

createdAt: DateTime
date: DateTime

The date of the event.

deleted: boolean
description: string

A description of the event.

location: string

The location of the event.

name: string

The name of the event.

official: boolean

Whether the event is official.

semesterId: string

The ID of the semester the event belongs to.

updatedAt: DateTime