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

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

There is a newer version: 1.11.56
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 DeviceCollectResult extends TeaModel {
    // 上链数据采集ID
    @NameInMap("collect_id")
    @Validation(required = true)
    public String collectId;

    // 上链id
    @NameInMap("antchain_id")
    public String antchainId;

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

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

    public DeviceCollectResult setAntchainId(String antchainId) {
        this.antchainId = antchainId;
        return this;
    }
    public String getAntchainId() {
        return this.antchainId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy