NIMSDK-AOS  9.19.0
QChatGetInviteApplyRecordOfServerResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 import java.io.Serializable;
5 import java.util.List;
6 
7 /**
8  * "查询服务器下的申请邀请记录接口" 结果
9  */
10 public class QChatGetInviteApplyRecordOfServerResult implements Serializable {
11 
12  /**
13  * 申请邀请记录
14  */
15  private final List<QChatInviteApplyRecord> records;
16 
17  public QChatGetInviteApplyRecordOfServerResult(List<QChatInviteApplyRecord> records) {
18  this.records = records;
19  }
20 
21  /**
22  * 获取申请邀请记录
23  * @return
24  */
25  public List<QChatInviteApplyRecord> getRecords() {
26  return records;
27  }
28 
29  @Override
30  public String toString() {
31  return "QChatGetInviteApplyRecordOfServerResult{" +
32  "records=" + records +
33  "}\n";
34  }
35 }