com.aliyun.iot20180120.models.BatchDeleteDeviceGroupRelationsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class BatchDeleteDeviceGroupRelationsRequest extends TeaModel {
@NameInMap("Device")
public java.util.List device;
@NameInMap("GroupId")
public String groupId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static BatchDeleteDeviceGroupRelationsRequest build(java.util.Map map) throws Exception {
BatchDeleteDeviceGroupRelationsRequest self = new BatchDeleteDeviceGroupRelationsRequest();
return TeaModel.build(map, self);
}
public BatchDeleteDeviceGroupRelationsRequest setDevice(java.util.List device) {
this.device = device;
return this;
}
public java.util.List getDevice() {
return this.device;
}
public BatchDeleteDeviceGroupRelationsRequest setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
public BatchDeleteDeviceGroupRelationsRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public static class BatchDeleteDeviceGroupRelationsRequestDevice extends TeaModel {
@NameInMap("DeviceName")
public String deviceName;
@NameInMap("ProductKey")
public String productKey;
public static BatchDeleteDeviceGroupRelationsRequestDevice build(java.util.Map map) throws Exception {
BatchDeleteDeviceGroupRelationsRequestDevice self = new BatchDeleteDeviceGroupRelationsRequestDevice();
return TeaModel.build(map, self);
}
public BatchDeleteDeviceGroupRelationsRequestDevice setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public BatchDeleteDeviceGroupRelationsRequestDevice setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy