com.volcengine.model.im.BatchAddConversationParticipantBody 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;
/**
* BatchAddConversationParticipantBody
*/
@lombok.Data
public final class BatchAddConversationParticipantBody {
/**
* 应用的唯一标志
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AppId")
private Integer appId;
/**
* 会话 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConversationShortId")
private Long conversationShortId;
/**
* 执行加群操作人的 UserId
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Operator")
private Long operator;
/**
* 是否开启屏障。如设置屏障,新加入用户无法看到历史会话消息。
*
*
*
* - `false`:不开启。
*
* - `true`:开启。
*
*
*
* 默认值为`false`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Barrier")
private Boolean barrier;
/**
* 群成员信息
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ParticipantInfos")
private List participantInfos;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy