com.antgroup.antchain.openapi.ato.models.DetailInnerOrderRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class DetailInnerOrderRequest 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")
@Validation(required = true)
public String orderId;
public static DetailInnerOrderRequest build(java.util.Map map) throws Exception {
DetailInnerOrderRequest self = new DetailInnerOrderRequest();
return TeaModel.build(map, self);
}
public DetailInnerOrderRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public DetailInnerOrderRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public DetailInnerOrderRequest setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
public DetailInnerOrderRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy