TAMS Club Calendar Frontend Documentation
    Preparing search index...

    Interface SingleEvent

    A single event with the editor name/email

    interface SingleEvent {
        club: string;
        description: string;
        editorEmail: string;
        editorId: string;
        editorName: string;
        end: number;
        eventId: string;
        id: string;
        location: string;
        name: string;
        noEnd?: boolean;
        publicEvent: boolean;
        repeatingId: string;
        repeatsUntil: number;
        reservation: boolean;
        start: number;
        type: EventType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    club: string

    The name of the club that is hosting the event

    description: string

    The description of the event

    editorEmail: string
    editorId: string

    The ID of the user who creates this event

    editorName: string
    end: number

    The time in UTC milliseconds that the event ends

    eventId: string

    The ID assigned by the Google Calendar API to the calendar event

    id: string

    The unique UUIDv4 for the event

    location: string

    The value of the location that the event takes place in

    name: string

    The name of the event

    noEnd?: boolean

    If true, the event will not have an end time

    publicEvent: boolean

    True to show on schedule view/calendar/Google Calendar

    repeatingId: string

    Repeating ID for connecting repeating events

    repeatsUntil: number

    End repeating date for the event

    reservation: boolean

    True to show on reservation calendar/check for overlaps

    start: number

    The time in UTC milliseconds that the event starts

    type: EventType

    Type of the event