Member Junction
    Preparing search index...

    The subset of a Google Calendar Event resource this adapter normalizes.

    interface GoogleCalendarEvent {
        attendees?: GoogleAttendee[];
        conferenceData?: { entryPoints?: GoogleConferenceEntryPoint[] };
        end?: GoogleEventDateTime;
        hangoutLink?: string;
        id?: string;
        organizer?: { displayName?: string; email?: string };
        start?: GoogleEventDateTime;
        status?: string;
        summary?: string;
    }
    Index

    Properties

    attendees?: GoogleAttendee[]

    Google event.attendees.

    conferenceData?: { entryPoints?: GoogleConferenceEntryPoint[] }

    Google event.conferenceData.entryPoints — the modern conferencing block.

    Google event.end.

    hangoutLink?: string

    Google event.hangoutLink — the Meet join URL (legacy flat field).

    id?: string

    Google event.id — the stable external event id.

    organizer?: { displayName?: string; email?: string }

    Google event.organizer ({ email, displayName }).

    Google event.start.

    status?: string

    Google event.statuscancelled events are dropped from the normalized result.

    summary?: string

    Google event.summary — the meeting title.