com.volcengine.model.im.BatchGetWhitelistParticipantResResultParticipantsItem 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;
import java.util.Map;
/**
* BatchGetWhitelistParticipantResResultParticipantsItem
*/
@lombok.Data
public final class BatchGetWhitelistParticipantResResultParticipantsItem {
/**
* 白名单成员 UserId
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ParticipantUserId")
private Long participantUserId;
/**
* 用户加入白名单时间,单位为秒
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CreateTime")
private Long createTime;
/**
* 执行加入白名单操作操作人 UserId
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Operator")
private Long operator;
/**
* 白名单成员昵称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "NickName")
private String nickName;
/**
* 白名单成员扩展字段。`key` 的类型为 string,`value` 的类型为 string。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Ext")
private Map ext;
/**
* 白名单成员头像
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AvatarUrl")
private String avatarUrl;
/**
* 直播群群成员标记
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Marks")
private List marks;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy