All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.volcengine.model.im.ScanConversationParticipantListResResultParticipantsItem Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.im;


import com.alibaba.fastjson.JSON;

import java.util.List;
import java.util.Map;

/**
 * ScanConversationParticipantListResResultParticipantsItem
 */
@lombok.Data
public final class ScanConversationParticipantListResResultParticipantsItem  {

    /**
     * 

会话 ID

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ConversationShortId") private Long conversationShortId; /** *

群成员 ID

*/ @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; /** *

操作人对应的 UserId

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Operator") private Long operator; /** *

成员状态。

* * * *

- `0`:正常

* *

- `1`:退出

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Status") private Integer status; /** *

成员进群时间对应时间戳,单位为秒

*/ @com.alibaba.fastjson.annotation.JSONField(name = "CreateTime") private Long createTime; /** *

成员的扩展字段

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Ext") private Map ext; /** *

成员身份。

* * * *

- `0`:普通成员。

* *

- `1`:群主。

* *

- `2`:群管理员。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Role") private Long role; /** *

禁言时间戳,单位为秒。`0`表示不禁言

*/ @com.alibaba.fastjson.annotation.JSONField(name = "BlockTime") private Long blockTime; /** *

群成员头像

*/ @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