NIMSDK-AOS  9.21.10
QChatGenerateInviteCodeRecordData.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.model.inviteapplyrecord;
2 
3 /**
4  * 生成邀请码类型数据
5  */
7 
8  /**
9  * 获取邀请附言
10  * @return
11  */
12  String getInvitePostscript();
13 
14  /**
15  * 获取生成的邀请码
16  * @return
17  */
18  String getInviteCode();
19 
20  /**
21  * 获取被邀请用户数量
22  * @return
23  */
24  Integer getInvitedUserCount();
25 
26 }
邀请申请信息数据 com.netease.nimlib.sdk.qchat.enums.QChatInviteApplyRecordType#APPLY 类型对应 QChatAp...