com.volcengine.model.im.BatchGetWhitelistParticipantBody 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;
/**
* BatchGetWhitelistParticipantBody
*/
@lombok.Data
public final class BatchGetWhitelistParticipantBody {
/**
* 应用的唯一标志
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AppId")
private Integer appId;
/**
* 会话 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConversationShortId")
private Long conversationShortId;
/**
* 查询起始位置
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Cursor")
private Long cursor;
/**
* 每批查询条数。最大值为 `20`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Limit")
private Long limit;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy