com.volcengine.model.im.GetMessagesReadReceiptResResultReadReceiptItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.im;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* GetMessagesReadReceiptResResultReadReceiptItem
*/
@lombok.Data
public final class GetMessagesReadReceiptResResultReadReceiptItem {
/**
* 消息Id
*/
@com.alibaba.fastjson.annotation.JSONField(name = "MessageId")
private Long messageId;
/**
* 会话Id
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConversationShortId")
private Long conversationShortId;
/**
* 单聊中消息的接收方是否已读(只有单聊会话这个字段才有意义)
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ReceiverIsRead")
private Boolean receiverIsRead;
/**
* 消息已读的UserId列表
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ReadUserIds")
private List readUserIds;
/**
* 消息未读的UserId列表
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UnReadUserIds")
private List unReadUserIds;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy