RCKitStore
    Preparing search index...

    Interface IKitConversation

    会话信息

    interface IKitConversation {
        channelId: string;
        conversationType: ConversationType;
        draft: string;
        isTop: boolean;
        key: string;
        latestMessage: null | IAReceivedMessage;
        memberCount: number;
        name: string;
        nickName: string;
        notificationLevel: NotificationLevel;
        portraitUri: string;
        targetId: string;
        unreadCount: number;
        updateTime: number;
    }
    Index

    Properties

    channelId: string
    conversationType: ConversationType
    draft: string
    isTop: boolean
    key: string

    根据 targetId、conversationType、channelId 生成的唯一标识

    latestMessage: null | IAReceivedMessage
    memberCount: number
    name: string
    nickName: string
    notificationLevel: NotificationLevel
    portraitUri: string
    targetId: string
    unreadCount: number
    updateTime: number