Member Junction
    Preparing search index...

    The resourceData payload of a Graph call/participant notification (the subset we read).

    interface GraphCallResourceData {
        id?: string;
        participants?: GraphCallParticipant[];
        state?: string;
    }
    Index

    Properties

    id?: string

    The Graph call id, when the notification carries it directly.

    participants?: GraphCallParticipant[]

    The participants snapshot, when the notification is a participantsUpdated.

    state?: string

    The call's lifecycle state string ('establishing' / 'established' / 'terminated', etc.).