com.volcengine.model.im.QueryLiveParticipantStatusResResultStatusItem 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;
/**
* QueryLiveParticipantStatusResResultStatusItem
*/
@lombok.Data
public final class QueryLiveParticipantStatusResResultStatusItem {
/**
* 应用的唯一标志
*/
@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 = "ParticipantUserId")
private Long participantUserId;
/**
* 是否在群中
*/
@com.alibaba.fastjson.annotation.JSONField(name = "IsInConversation")
private Boolean isInConversation;
/**
* 加群时间,单位为秒
*/
@com.alibaba.fastjson.annotation.JSONField(name = "CreateTime")
private Long createTime;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy