interface IncomingCall {
    canHandleLocally: boolean;
    groupJid: string;
    id: string;
    isGroup: boolean;
    isSilenced: boolean;
    isVideo: boolean;
    offerReceivedWhileOffline: boolean;
    offerTime: number;
    outgoing: boolean;
    participants: any[];
    peerJid: string;
    webClientShouldHandle: boolean;
}

Properties

canHandleLocally: boolean
groupJid: string
id: string

alphanumeric ID of the call, can e.g. usable for hanging up

isGroup: boolean
isSilenced: boolean
isVideo: boolean
offerReceivedWhileOffline: boolean
offerTime: number

Epoch timestamp (seconds)

outgoing: boolean
participants: any[]
peerJid: string

ID of the caller, can be used to message them directly

webClientShouldHandle: boolean