Member Junction
    Preparing search index...

    One attendee on a normalized calendar invite. Platform-agnostic — Graph's attendees[].emailAddress and Google's attendees[].email both normalize to this shape.

    interface CalendarInviteAttendee {
        DisplayName?: string;
        Email: string;
        ResponseStatus?: "Accepted" | "Declined" | "Tentative" | "NeedsAction";
    }
    Index

    Properties

    DisplayName?: string

    The attendee's display name, when the calendar provides one.

    Email: string

    The attendee's email address (the join key used to match an agent identity).

    ResponseStatus?: "Accepted" | "Declined" | "Tentative" | "NeedsAction"

    Response status, when known — used later for "the agent accepted" UX; not required to join.