com.antgroup.antchain.openapi.bot.models.PushIotbasicMeterdataRequest 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 PushIotbasicMeterdataRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 租户id
@NameInMap("tenant_id")
@Validation(required = true)
public String tenantId;
// 订单id
@NameInMap("order_id")
public String orderId;
public static PushIotbasicMeterdataRequest build(java.util.Map map) throws Exception {
PushIotbasicMeterdataRequest self = new PushIotbasicMeterdataRequest();
return TeaModel.build(map, self);
}
public PushIotbasicMeterdataRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public PushIotbasicMeterdataRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public PushIotbasicMeterdataRequest setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
public PushIotbasicMeterdataRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
}