Acrobits IPC SDK
    Preparing search index...

    Interface CallInfoItem

    Represents information about a single call.

    interface CallInfoItem {
        callId: string;
        callState: CallState;
        establishedDate?: number;
        eventId: number;
        groupId?: string;
        isHeld: boolean;
        remoteUser: RemoteUser;
    }
    Index

    Properties

    callId: string

    Unique identifier for the call.

    callState: CallState

    Current state of the call.

    establishedDate?: number

    Optional timestamp (in seconds since epoch) when the call was established.

    eventId: number

    Call event ID as tracked by the Host app.

    groupId?: string

    Optional group ID as tracked by the Host app, provided if the call is part of a group.

    isHeld: boolean

    Whether the call is currently on hold.

    remoteUser: RemoteUser

    Information about the remote user in the call.