com.volcengine.model.im.ScanConversationParticipantListResResult 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;
/**
* ScanConversationParticipantListResResult
*/
@lombok.Data
public final class ScanConversationParticipantListResResult {
/**
* 群成员详细信息
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Participants")
private List participants;
/**
* 是否还有下一页
*/
@com.alibaba.fastjson.annotation.JSONField(name = "HasMore")
private Boolean hasMore;
/**
* 下一页起始位置。为负时表示后续没有成员数据
*/
@com.alibaba.fastjson.annotation.JSONField(name = "NextCursor")
private Integer nextCursor;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy