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

com.antgroup.antchain.openapi.bot.models.DeviceCollectFail Maven / Gradle / Ivy

There is a newer version: 1.12.7
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;

import com.aliyun.tea.*;

public class DeviceCollectFail extends TeaModel {
    // 上链数据采集ID
    @NameInMap("collect_id")
    @Validation(required = true)
    public String collectId;

    // 错误码
    @NameInMap("code")
    @Validation(required = true)
    public String code;

    // 错误信息
    @NameInMap("message")
    @Validation(required = true)
    public String message;

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

    public DeviceCollectFail setCollectId(String collectId) {
        this.collectId = collectId;
        return this;
    }
    public String getCollectId() {
        return this.collectId;
    }

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

    public DeviceCollectFail setMessage(String message) {
        this.message = message;
        return this;
    }
    public String getMessage() {
        return this.message;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy