NIMSDK-AOS 10.4.0-beta
载入中...
搜索中...
未找到
QChatInviteApplyRecord.java
浏览该文件的文档.
1package com.netease.nimlib.sdk.qchat.model;
2
3import com.netease.nimlib.sdk.qchat.enums.QChatInviteApplyRecordStatus;
4import com.netease.nimlib.sdk.qchat.enums.QChatInviteApplyRecordType;
5import com.netease.nimlib.sdk.qchat.model.inviteapplyrecord.QChatInviteApplyRecordData;
6import java.io.Serializable;
7
8/**
9 * 申请/邀请记录
10 */
11public interface QChatInviteApplyRecord extends Serializable {
12
13 /**
14 * 获取操作者账号
15 * @return
16 */
17 String getAccid();
18
19 /**
20 * 获取申请/邀请记录类型
21 * @return
22 */
24
25 /**
26 * 获取服务器Id
27 * @return
28 */
30
31 /**
32 * 获取申请/邀请记录状态
33 * @return
34 */
36
37 /**
38 * 获取申请/邀请唯一标识
39 * @return
40 */
42
43 /**
44 * 获取创建时间
45 * @return
46 */
48
49 /**
50 * 获取更新时间
51 * @return
52 */
54
55 /**
56 * 获取过期时间
57 * @return
58 */
60
61 /**
62 * 获取邀请申请信息结果数据
63 * @return
64 */
66
67 /**
68 * 获取记录唯一标识
69 * @return
70 */
72
73}
long getRequestId()
获取申请/邀请唯一标识
QChatInviteApplyRecordData getData()
获取邀请申请信息结果数据
QChatInviteApplyRecordType getType()
获取申请/邀请记录类型
QChatInviteApplyRecordStatus getStatus()
获取申请/邀请记录状态
邀请申请信息数据 com.netease.nimlib.sdk.qchat.enums.QChatInviteApplyRecordType#APPLY 类型对应 QChatApplyRecordDat...