NIMSDK-AOS  9.16.0
QChatDeleteMessageParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatDeleteMessageParam {
9 
13  @NonNull
14  private final QChatUpdateParam updateParam;
18  @NonNull
19  private final Long serverId;
23  @NonNull
24  private final Long channelId;
28  @NonNull
29  private final Long time;
33  @NonNull
34  private final Long msgIdServer;
35 
44  public QChatDeleteMessageParam(@NonNull QChatUpdateParam updateParam, long serverId, long channelId, long time, long msgIdServer) {
45  this.updateParam = updateParam;
46  this.serverId = serverId;
47  this.channelId = channelId;
48  this.time = time;
49  this.msgIdServer = msgIdServer;
50  }
51 
56  @NonNull
58  return updateParam;
59  }
60 
65  @NonNull
66  public Long getServerId() {
67  return serverId;
68  }
69 
74  @NonNull
75  public Long getChannelId() {
76  return channelId;
77  }
78 
83  @NonNull
84  public Long getTime() {
85  return time;
86  }
87 
92  @NonNull
93  public Long getMsgIdServer() {
94  return msgIdServer;
95  }
96 }
消息/系统通知相关接口更新操作通用参数,设置该操作相关的附加字段,设置该操作引发的推送内容 ...
QChatUpdateParam getUpdateParam()
获取更新操作通用参数
QChatDeleteMessageParam(@NonNull QChatUpdateParam updateParam, long serverId, long channelId, long time, long msgIdServer)