All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkdiot_1_0.models.DeviceConferenceRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy