com.volcengine.model.im.QueryOnlineResultItem 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;
/**
* QueryOnlineStatusResultItem
*/
@lombok.Data
public class QueryOnlineResultItem {
/**
* 连接的唯一标识
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ConnId")
private String connId;
/**
* 设备 ID
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DeviceId")
private Long deviceId;
/**
* 客户端版本号
*/
@com.alibaba.fastjson.annotation.JSONField(name = "ClientVersion")
private Long clientVersion;
/**
* 设备平台,目前支持 Android、iOS和 Web。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Platform")
private String platform;
/**
* 用户的 UserId
*/
@com.alibaba.fastjson.annotation.JSONField(name = "UserId")
private Long userId;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy