com.aliyun.dingtalkconference_1_0.models.GetConfDetailDataResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class GetConfDetailDataResponseBody extends TeaModel {
@NameInMap("list")
public java.util.List list;
/**
* example:
* xxxxZ0bVGoqxxBGQbxdxxxx
*/
@NameInMap("nextToken")
public String nextToken;
public static GetConfDetailDataResponseBody build(java.util.Map map) throws Exception {
GetConfDetailDataResponseBody self = new GetConfDetailDataResponseBody();
return TeaModel.build(map, self);
}
public GetConfDetailDataResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public GetConfDetailDataResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public static class GetConfDetailDataResponseBodyList extends TeaModel {
/**
* example:
* true
*/
@NameInMap("belongOrg")
public String belongOrg;
/**
* example:
* 6449d8a6414xxxxxxxx01464af9f0
*/
@NameInMap("conferenceId")
public String conferenceId;
/**
* example:
* Mac
*/
@NameInMap("deviceType")
public String deviceType;
/**
* example:
* 974000
*/
@NameInMap("duration")
public Long duration;
/**
* example:
* 1682561199000
*/
@NameInMap("joinTime")
public Long joinTime;
/**
* example:
* 1682562173000
*/
@NameInMap("leaveTime")
public Long leaveTime;
/**
* example:
* -1
*/
@NameInMap("networkQuality")
public String networkQuality;
/**
* example:
* 张三
*/
@NameInMap("nick")
public String nick;
/**
* example:
* 参会人
*/
@NameInMap("role")
public String role;
/**
* example:
* xxxx
*/
@NameInMap("sessionId")
public String sessionId;
/**
* example:
* 已离开
*/
@NameInMap("status")
public String status;
/**
* example:
* njMTqKo9xxxxEiE
*/
@NameInMap("unionId")
public String unionId;
/**
* example:
* 6.1.1
*/
@NameInMap("version")
public String version;
public static GetConfDetailDataResponseBodyList build(java.util.Map map) throws Exception {
GetConfDetailDataResponseBodyList self = new GetConfDetailDataResponseBodyList();
return TeaModel.build(map, self);
}
public GetConfDetailDataResponseBodyList setBelongOrg(String belongOrg) {
this.belongOrg = belongOrg;
return this;
}
public String getBelongOrg() {
return this.belongOrg;
}
public GetConfDetailDataResponseBodyList setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public GetConfDetailDataResponseBodyList setDeviceType(String deviceType) {
this.deviceType = deviceType;
return this;
}
public String getDeviceType() {
return this.deviceType;
}
public GetConfDetailDataResponseBodyList setDuration(Long duration) {
this.duration = duration;
return this;
}
public Long getDuration() {
return this.duration;
}
public GetConfDetailDataResponseBodyList setJoinTime(Long joinTime) {
this.joinTime = joinTime;
return this;
}
public Long getJoinTime() {
return this.joinTime;
}
public GetConfDetailDataResponseBodyList setLeaveTime(Long leaveTime) {
this.leaveTime = leaveTime;
return this;
}
public Long getLeaveTime() {
return this.leaveTime;
}
public GetConfDetailDataResponseBodyList setNetworkQuality(String networkQuality) {
this.networkQuality = networkQuality;
return this;
}
public String getNetworkQuality() {
return this.networkQuality;
}
public GetConfDetailDataResponseBodyList setNick(String nick) {
this.nick = nick;
return this;
}
public String getNick() {
return this.nick;
}
public GetConfDetailDataResponseBodyList setRole(String role) {
this.role = role;
return this;
}
public String getRole() {
return this.role;
}
public GetConfDetailDataResponseBodyList setSessionId(String sessionId) {
this.sessionId = sessionId;
return this;
}
public String getSessionId() {
return this.sessionId;
}
public GetConfDetailDataResponseBodyList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetConfDetailDataResponseBodyList setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public GetConfDetailDataResponseBodyList setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}
}