All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.iot20180120.models.BatchGetEdgeInstanceDeviceChannelRequest Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class BatchGetEdgeInstanceDeviceChannelRequest extends TeaModel {
    @NameInMap("DriverId")
    public String driverId;

    @NameInMap("InstanceId")
    public String instanceId;

    @NameInMap("IotIds")
    public java.util.List iotIds;

    @NameInMap("IotInstanceId")
    public String iotInstanceId;

    public static BatchGetEdgeInstanceDeviceChannelRequest build(java.util.Map map) throws Exception {
        BatchGetEdgeInstanceDeviceChannelRequest self = new BatchGetEdgeInstanceDeviceChannelRequest();
        return TeaModel.build(map, self);
    }

    public BatchGetEdgeInstanceDeviceChannelRequest setDriverId(String driverId) {
        this.driverId = driverId;
        return this;
    }
    public String getDriverId() {
        return this.driverId;
    }

    public BatchGetEdgeInstanceDeviceChannelRequest setInstanceId(String instanceId) {
        this.instanceId = instanceId;
        return this;
    }
    public String getInstanceId() {
        return this.instanceId;
    }

    public BatchGetEdgeInstanceDeviceChannelRequest setIotIds(java.util.List iotIds) {
        this.iotIds = iotIds;
        return this;
    }
    public java.util.List getIotIds() {
        return this.iotIds;
    }

    public BatchGetEdgeInstanceDeviceChannelRequest setIotInstanceId(String iotInstanceId) {
        this.iotInstanceId = iotInstanceId;
        return this;
    }
    public String getIotInstanceId() {
        return this.iotInstanceId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy