1 package com.netease.nimlib.sdk.qchat.result;
3 import androidx.annotation.NonNull;
4 import java.io.Serializable;
5 import java.util.ArrayList;
10 private List<String> successAccids;
11 private List<String> failedAccids;
14 if (successAccids != null) {
15 this.successAccids =
new ArrayList<>(successAccids);
17 this.successAccids =
new ArrayList<>(0);
20 if (failedAccids != null) {
21 this.failedAccids =
new ArrayList<>(failedAccids);
23 this.failedAccids =
new ArrayList<>(0);
45 return "QChatRemoveMembersFromServerRoleResult{" +
46 "accids=" + successAccids +
47 ","+
"failedAccids=" + failedAccids +
QChatRemoveMembersFromServerRoleResult(List< String > successAccids, List< String > failedAccids)
List< String > getFailedAccids()
List< String > getSuccessAccids()