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

com.aliyun.iot20180120.models.BatchGetEdgeInstanceDriverConfigsResponseBody 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 BatchGetEdgeInstanceDriverConfigsResponseBody extends TeaModel {
    @NameInMap("RequestId")
    public String requestId;

    @NameInMap("DriverConfigList")
    public java.util.List driverConfigList;

    @NameInMap("ErrorMessage")
    public String errorMessage;

    @NameInMap("Code")
    public String code;

    @NameInMap("Success")
    public Boolean success;

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

    public BatchGetEdgeInstanceDriverConfigsResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public BatchGetEdgeInstanceDriverConfigsResponseBody setDriverConfigList(java.util.List driverConfigList) {
        this.driverConfigList = driverConfigList;
        return this;
    }
    public java.util.List getDriverConfigList() {
        return this.driverConfigList;
    }

    public BatchGetEdgeInstanceDriverConfigsResponseBody setErrorMessage(String errorMessage) {
        this.errorMessage = errorMessage;
        return this;
    }
    public String getErrorMessage() {
        return this.errorMessage;
    }

    public BatchGetEdgeInstanceDriverConfigsResponseBody setCode(String code) {
        this.code = code;
        return this;
    }
    public String getCode() {
        return this.code;
    }

    public BatchGetEdgeInstanceDriverConfigsResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class BatchGetEdgeInstanceDriverConfigsResponseBodyDriverConfigListConfigList extends TeaModel {
        @NameInMap("Key")
        public String key;

        @NameInMap("ConfigId")
        public String configId;

        @NameInMap("Format")
        public String format;

        @NameInMap("Content")
        public String content;

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

        public BatchGetEdgeInstanceDriverConfigsResponseBodyDriverConfigListConfigList setKey(String key) {
            this.key = key;
            return this;
        }
        public String getKey() {
            return this.key;
        }

        public BatchGetEdgeInstanceDriverConfigsResponseBodyDriverConfigListConfigList setConfigId(String configId) {
            this.configId = configId;
            return this;
        }
        public String getConfigId() {
            return this.configId;
        }

        public BatchGetEdgeInstanceDriverConfigsResponseBodyDriverConfigListConfigList setFormat(String format) {
            this.format = format;
            return this;
        }
        public String getFormat() {
            return this.format;
        }

        public BatchGetEdgeInstanceDriverConfigsResponseBodyDriverConfigListConfigList setContent(String content) {
            this.content = content;
            return this;
        }
        public String getContent() {
            return this.content;
        }

    }

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

        @NameInMap("ConfigList")
        public java.util.List configList;

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

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

        public BatchGetEdgeInstanceDriverConfigsResponseBodyDriverConfigList setConfigList(java.util.List configList) {
            this.configList = configList;
            return this;
        }
        public java.util.List getConfigList() {
            return this.configList;
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy