com.volcengine.model.im.GetParticipantReadIndexResResultReadIndexesItem 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;
/**
* GetParticipantReadIndexResResultReadIndexesItem
*/
@lombok.Data
public final class GetParticipantReadIndexResResultReadIndexesItem {
/**
* 会话成员 UserId
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ParticipantUserId")
private Long participantUserId;
/**
* 成员已读位置。若没有返回某个成员的 ReadIndex,则表示该成员的 ReadIndex 为 0。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ReadIndex")
private Long readIndex;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy