A phone call

interface ActionCall {
    duration: number;
    id: Long;
    isVideo: boolean;
    reason?: CallDiscardReason;
    type: "call";
}

Properties

duration: number

Duration if the call in seconds (0 if not available)

id: Long

Call ID

isVideo: boolean

Whether this is a video call

Call discard reason, if available

type: "call"