com.volcengine.model.im.BatchUpdateUserItem 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;
/**
* BatchUpdateUserItem
*/
@lombok.Data
public final class BatchUpdateUserItem {
/**
* 用户id
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UserId")
private Long userId;
/**
* 扩展字段。`key` 的类型为 string,`value` 的类型为 string。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Ext")
private Map ext;
/**
* 标签
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Tags")
private List tags;
/**
* 头像 url
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Portrait")
private String portrait;
/**
* 昵称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "NickName")
private String nickName;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy