NIMSDK-AOS  9.19.0
QChatResendSystemNotificationParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
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)