NIMSDK-AOS 10.4.0-beta
载入中...
搜索中...
未找到
QChatResendSystemNotificationParam.java
浏览该文件的文档.
1package com.netease.nimlib.sdk.qchat.param;
2
3import androidx.annotation.NonNull;
4import com.netease.nimlib.sdk.qchat.model.QChatSystemNotification;
5
6/**
7 * "重发系统通知"接口入参
8 */
10
11 /**
12 * 重发的系统通知
13 */
14 @NonNull
15 private final QChatSystemNotification systemNotification;
16
17 public QChatResendSystemNotificationParam(@NonNull QChatSystemNotification systemNotification) {
18 this.systemNotification = systemNotification;
19 }
20
21 /**
22 * 获取重发的系统通知
23 * @return
24 */
25 @NonNull
27 return systemNotification;
28 }
29}
QChatResendSystemNotificationParam(@NonNull QChatSystemNotification systemNotification)