Package version:

Event when there was an update to participant(s).

interface ParticipantsUpdated {
    callConnectionId: string;
    correlationId: string;
    kind: "ParticipantsUpdated";
    participants: CallParticipant[];
    resultInformation?: ResultInformation;
    serverCallId: string;
}

Hierarchy

  • Omit<RestParticipantsUpdated,
        | "callConnectionId"
        | "serverCallId"
        | "correlationId"
        | "resultInformation"
        | "participants">
    • ParticipantsUpdated

Properties

callConnectionId: string

Call connection ID.

correlationId: string

Correlation ID for event to call correlation. Also called ChainId for skype chain ID.

kind

kind of this event.

participants: CallParticipant[]

The list of participants in the call.

resultInformation?: ResultInformation

Contains the resulting SIP code/sub-code and message from NGC services.

serverCallId: string

Server call ID.