鸿蒙 CallLib-v1.0.0
    Preparing search index...

    Interface RCCallSession

    interface RCCallSession {
        callId: string;
        targetId: string;
        sessionId: string;
        extra: string;
        caller: string;
        inviter: string;
        callType: RCCallType;
        callStatus: RCCallStatus;
        mediaType: RCCallMediaType;
        localUserProfile: RCCallUserProfile;
        remoteUserProfileList: RCCallUserProfile[];
        startTime: number;
        connectedTime: number;
        endTime: number;
        callDisconnectReason: RCCallDisconnectReason;
        remoteInvitePushConfig: PushConfig;
        remoteHangupPushConfig: PushConfig;
    }
    Index

    Properties

    callId: string

    通话 ID

    targetId: string

    会话目标 ID

    sessionId: string

    RTC 会话 ID, 用于 Server API ID

    extra: string

    扩展信息

    caller: string

    通话发起者 ID

    inviter: string

    邀请本地用户加入通话的用户 ID

    callType: RCCallType

    通话类型

    callStatus: RCCallStatus

    通话状态

    mediaType: RCCallMediaType

    通话类型

    localUserProfile: RCCallUserProfile

    本地用户信息实例

    remoteUserProfileList: RCCallUserProfile[]

    远端用户信息实例列表

    startTime: number

    通话开始时间

    connectedTime: number

    通话接通时间

    endTime: number

    通话结束时间

    callDisconnectReason: RCCallDisconnectReason

    通话挂断原因

    remoteInvitePushConfig: PushConfig

    远端邀请推送配置

    remoteHangupPushConfig: PushConfig

    远端挂断推送配置