NIMSDK-AOS  9.16.0
QChatGetUserPushConfigsResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
3 import java.io.Serializable;
4 import java.util.List;
5 
6 public class QChatGetUserPushConfigsResult implements Serializable {
7 
11  private final List<QChatUserPushConfig> userPushConfigs;
12 
13  public QChatGetUserPushConfigsResult(List<QChatUserPushConfig> userPushConfigs) {
14  this.userPushConfigs = userPushConfigs;
15  }
16 
21  public List<QChatUserPushConfig> getUserPushConfigs() {
22  return userPushConfigs;
23  }
24 
25  @Override
26  public String toString() {
27  return "QChatGetUserPushConfigsResult{" +
28  "userPushConfigs=" + userPushConfigs +
29  '}';
30  }
31 }
List< QChatUserPushConfig > getUserPushConfigs()
获取查询到的用户推送配置列表