NIMSDK-AOS 10.4.0-beta
载入中...
搜索中...
未找到
QChatDownloadAttachmentParam.java
浏览该文件的文档.
1package com.netease.nimlib.sdk.qchat.param;
2
3import androidx.annotation.NonNull;
4import com.netease.nimlib.sdk.qchat.model.QChatMessage;
5
6/**
7 * "下载附件"接口入参
8 */
10
11 /**
12 * 消息体
13 */
14 @NonNull
15 private final QChatMessage message;
16 /**
17 * 下载缩略图还是原文件。为true时,仅下载缩略图
18 */
19 @NonNull
20 private final boolean thumb;
21
22 /**
23 *
24 * @param message 消息体
25 * @param thumb 下载缩略图还是原文件。为true时,仅下载缩略图
26 */
27 public QChatDownloadAttachmentParam(@NonNull QChatMessage message, boolean thumb) {
28 this.message = message;
29 this.thumb = thumb;
30 }
31
32 /**
33 *
34 * @return
35 */
36 @NonNull
38 return message;
39 }
40
41 public boolean isThumb() {
42 return thumb;
43 }
44}
QChatDownloadAttachmentParam(@NonNull QChatMessage message, boolean thumb)