com.aliyun.dingtalkdiot_1_0.models.BatchUpdateDeviceResponseBody 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 BatchUpdateDeviceResponseBody extends TeaModel {
// 修改成功的设备ID列表。
@NameInMap("deviceIds")
public java.util.List deviceIds;
public static BatchUpdateDeviceResponseBody build(java.util.Map map) throws Exception {
BatchUpdateDeviceResponseBody self = new BatchUpdateDeviceResponseBody();
return TeaModel.build(map, self);
}
public BatchUpdateDeviceResponseBody setDeviceIds(java.util.List deviceIds) {
this.deviceIds = deviceIds;
return this;
}
public java.util.List getDeviceIds() {
return this.deviceIds;
}
}