com.aliyun.iot20180120.models.BatchSetEdgeInstanceDeviceChannelRequest 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class BatchSetEdgeInstanceDeviceChannelRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* BE0BD49EF5EF4D119D09CC1B25******
*/
@NameInMap("ChannelId")
public String channelId;
/**
* This parameter is required.
*
* example:
* 9c1ae7bd59f1469abbdccc9592******
*/
@NameInMap("DriverId")
public String driverId;
/**
* This parameter is required.
*
* example:
* 6GaTtvTj7vJhiS******
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* This parameter is required.
*
* example:
* Hathoyxglj9jpYPyw3WN******
*/
@NameInMap("IotIds")
public java.util.List iotIds;
/**
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static BatchSetEdgeInstanceDeviceChannelRequest build(java.util.Map map) throws Exception {
BatchSetEdgeInstanceDeviceChannelRequest self = new BatchSetEdgeInstanceDeviceChannelRequest();
return TeaModel.build(map, self);
}
public BatchSetEdgeInstanceDeviceChannelRequest setChannelId(String channelId) {
this.channelId = channelId;
return this;
}
public String getChannelId() {
return this.channelId;
}
public BatchSetEdgeInstanceDeviceChannelRequest setDriverId(String driverId) {
this.driverId = driverId;
return this;
}
public String getDriverId() {
return this.driverId;
}
public BatchSetEdgeInstanceDeviceChannelRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public BatchSetEdgeInstanceDeviceChannelRequest setIotIds(java.util.List iotIds) {
this.iotIds = iotIds;
return this;
}
public java.util.List getIotIds() {
return this.iotIds;
}
public BatchSetEdgeInstanceDeviceChannelRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy