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