appointme
    Preparing search index...

    Interface Appointment

    interface Appointment {
        _id?: string;
        attendeeEmail: string;
        attendeeName: string;
        caldavUid?: string;
        description?: string;
        end: Date;
        event: string;
        googleId?: string;
        isRecurring?: boolean;
        location?: string;
        recurrenceIndex?: number;
        seriesId?: string;
        start: Date;
        user: string;
    }
    Index

    Properties

    _id?: string
    attendeeEmail: string
    attendeeName: string
    caldavUid?: string
    description?: string
    end: Date
    event: string
    googleId?: string
    isRecurring?: boolean
    location?: string
    recurrenceIndex?: number
    seriesId?: string

    Series tracking for recurring appointments

    start: Date
    user: string