com.aliyun.iot20180120.models.BatchDeleteEdgeInstanceChannelRequest 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 BatchDeleteEdgeInstanceChannelRequest extends TeaModel {
@NameInMap("ChannelIds")
public java.util.List channelIds;
@NameInMap("DriverId")
public String driverId;
@NameInMap("InstanceId")
public String instanceId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static BatchDeleteEdgeInstanceChannelRequest build(java.util.Map map) throws Exception {
BatchDeleteEdgeInstanceChannelRequest self = new BatchDeleteEdgeInstanceChannelRequest();
return TeaModel.build(map, self);
}
public BatchDeleteEdgeInstanceChannelRequest setChannelIds(java.util.List channelIds) {
this.channelIds = channelIds;
return this;
}
public java.util.List getChannelIds() {
return this.channelIds;
}
public BatchDeleteEdgeInstanceChannelRequest setDriverId(String driverId) {
this.driverId = driverId;
return this;
}
public String getDriverId() {
return this.driverId;
}
public BatchDeleteEdgeInstanceChannelRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public BatchDeleteEdgeInstanceChannelRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy