com.volcengine.model.im.BatchAddConversationParticipantBodyParticipantInfosItem 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.Map;
/**
* BatchAddConversationParticipantBodyParticipantInfosItem
*/
@lombok.Data
public final class BatchAddConversationParticipantBodyParticipantInfosItem {
/**
* 添加成员所属 UserId,UserId 必须大于 `0`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ParticipantUserId")
private Long participantUserId;
/**
* 成员等级
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Level")
private Integer level;
/**
* 成员昵称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "NickName")
private String nickName;
/**
* 成员身份,可取值为:`0`,`1`,`2`。
*
*
*
* - `0`:普通成员。
*
* - `1`:群主。添加群主时,需确保会话中的 `ownerUid` 与群主的 `UserId` 相同。
*
* - `2`:群管理员。
*
*
*
* 默认值为`0`,值不合法时自动调整为默认值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Role")
private Integer role;
/**
* 成员扩展字段
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Ext")
private Map ext;
/**
* 成员已读位置点
*/
@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