com.aliyun.dingtalkdiot_1_0.models.DeviceConferenceResponseBody 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.dingtalkdiot_1_0.models;
import com.aliyun.tea.*;
public class DeviceConferenceResponseBody extends TeaModel {
/**
* example:
* 123456789
*/
@NameInMap("conferenceId")
public String conferenceId;
public static DeviceConferenceResponseBody build(java.util.Map map) throws Exception {
DeviceConferenceResponseBody self = new DeviceConferenceResponseBody();
return TeaModel.build(map, self);
}
public DeviceConferenceResponseBody setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
}