com.aliyun.dingtalkrooms_1_0.models.DeleteMeetingRoomControlPanelRequest 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.dingtalkrooms_1_0.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomControlPanelRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("roomIds")
public java.util.List roomIds;
/**
* This parameter is required.
*
* example:
* A1FAxxxxx
*/
@NameInMap("unionId")
public String unionId;
public static DeleteMeetingRoomControlPanelRequest build(java.util.Map map) throws Exception {
DeleteMeetingRoomControlPanelRequest self = new DeleteMeetingRoomControlPanelRequest();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomControlPanelRequest setRoomIds(java.util.List roomIds) {
this.roomIds = roomIds;
return this;
}
public java.util.List getRoomIds() {
return this.roomIds;
}
public DeleteMeetingRoomControlPanelRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}