com.aliyun.dingtalkdiot_1_0.models.DeviceConferenceRequest 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 DeviceConferenceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 设备的应急会议
*/
@NameInMap("confTitle")
public String confTitle;
/**
* example:
* 12345678
*/
@NameInMap("conferenceId")
public String conferenceId;
/**
* example:
* 123456
*/
@NameInMap("conferencePassword")
public String conferencePassword;
/**
* This parameter is required.
*/
@NameInMap("deviceIds")
public java.util.List deviceIds;
public static DeviceConferenceRequest build(java.util.Map map) throws Exception {
DeviceConferenceRequest self = new DeviceConferenceRequest();
return TeaModel.build(map, self);
}
public DeviceConferenceRequest setConfTitle(String confTitle) {
this.confTitle = confTitle;
return this;
}
public String getConfTitle() {
return this.confTitle;
}
public DeviceConferenceRequest setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public DeviceConferenceRequest setConferencePassword(String conferencePassword) {
this.conferencePassword = conferencePassword;
return this;
}
public String getConferencePassword() {
return this.conferencePassword;
}
public DeviceConferenceRequest setDeviceIds(java.util.List deviceIds) {
this.deviceIds = deviceIds;
return this;
}
public java.util.List getDeviceIds() {
return this.deviceIds;
}
}