Conexia Telecom SDK
    Preparing search index...

    Type Alias Call

    Represents a call.

    type Call = {
        callType: CallType;
        confId: string | undefined;
        connectedName: string;
        connectedNumber: string;
        id: string;
        muted: boolean;
        onHold: boolean;
        outgoing: boolean;
        recordingState: CallRecordingState;
        state: string;
        supervisedTransferInProgress: boolean;
    }
    Index
    callType: CallType

    The type of the call (regular call or conference).

    confId: string | undefined

    Identifier of the associated conference, if applicable. Will be undefined if the call is not part of a conference.

    connectedName: string

    The name associated with the connected number.

    connectedNumber: string

    The number currently connected in the call.

    id: string

    Unique identifier of the call.

    muted: boolean

    Indicates whether the call is currently muted.

    onHold: boolean

    Indicates whether the call is currently on hold.

    outgoing: boolean

    Indicates whether the call is outgoing.

    recordingState: CallRecordingState

    The current recording state of the call.

    state: string

    The current state of the call.

    supervisedTransferInProgress: boolean

    Indicates whether a supervised transfer is currently in progress.