com.antgroup.antchain.openapi.bot.models.DeviceCollectResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-bot Show documentation
Show all versions of openapi-bot Show documentation
Ant Chain BOT SDK for Java
// 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;
}
}