![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetConfBaseInfoByLogicalIdResponseBody 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetConfBaseInfoByLogicalIdResponseBody extends TeaModel {
@NameInMap("conferenceId")
public String conferenceId;
@NameInMap("logicalConferenceId")
public String logicalConferenceId;
@NameInMap("nickname")
public String nickname;
@NameInMap("startTime")
public Long startTime;
@NameInMap("title")
public String title;
@NameInMap("unionId")
public String unionId;
public static GetConfBaseInfoByLogicalIdResponseBody build(java.util.Map map) throws Exception {
GetConfBaseInfoByLogicalIdResponseBody self = new GetConfBaseInfoByLogicalIdResponseBody();
return TeaModel.build(map, self);
}
public GetConfBaseInfoByLogicalIdResponseBody setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public GetConfBaseInfoByLogicalIdResponseBody setLogicalConferenceId(String logicalConferenceId) {
this.logicalConferenceId = logicalConferenceId;
return this;
}
public String getLogicalConferenceId() {
return this.logicalConferenceId;
}
public GetConfBaseInfoByLogicalIdResponseBody setNickname(String nickname) {
this.nickname = nickname;
return this;
}
public String getNickname() {
return this.nickname;
}
public GetConfBaseInfoByLogicalIdResponseBody setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetConfBaseInfoByLogicalIdResponseBody setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetConfBaseInfoByLogicalIdResponseBody setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy