NIMSDK-AOS  9.16.0
QChatGetInviteApplyRecordOfSelfResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 import java.io.Serializable;
5 import java.util.List;
6 
10 public class QChatGetInviteApplyRecordOfSelfResult implements Serializable {
11 
15  private final List<QChatInviteApplyRecord> records;
16 
17  public QChatGetInviteApplyRecordOfSelfResult(List<QChatInviteApplyRecord> records) {
18  this.records = records;
19  }
24  public List<QChatInviteApplyRecord> getRecords() {
25  return records;
26  }
27 
28 
29  @Override
30  public String toString() {
31  return "QChatGetInviteApplyRecordOfSelfResult{" +
32  "records=" + records +
33  "}\n";
34  }
35 }