1 package com.netease.nimlib.sdk.qchat.result;
3 import androidx.annotation.NonNull;
5 import java.io.Serializable;
6 import java.util.ArrayList;
21 private final List<QChatClient> otherClients;
29 this.currentClient = currentClient;
30 this.otherClients = otherClients != null ?
new ArrayList<>(otherClients) :
new ArrayList<>();
53 return "QChatLoginResult{" +
54 "currentClient=" + currentClient +
55 ", otherClients=" + otherClients +
QChatLoginResult(QChatClient currentClient, List< QChatClient > otherClients)
QChatClient getCurrentClient()
获取当前登录客户端信息
List< QChatClient > getOtherClients()
获取其他登录客户端信息列表