NIMSDK-AOS  9.16.0
QChatDeleteChannelParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatDeleteChannelParam {
9 
13  @NonNull
14  private final Long channelId;
15 
20  public QChatDeleteChannelParam(long channelId) {
21  this.channelId = channelId;
22  }
23 
28  @NonNull
29  public Long getChannelId() {
30  return channelId;
31  }
32 
33 }