![JAR search and dependency download from the Maven repository](/logo.png)
com.antgroup.antchain.openapi.ato.models.SyncFrontTradeRequest 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 SyncFrontTradeRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 类型
// 1. orderFullInfo , 订单所有信息同步
@NameInMap("type")
@Validation(required = true)
public String type;
// json.toString
@NameInMap("biz_content")
@Validation(required = true)
public String bizContent;
public static SyncFrontTradeRequest build(java.util.Map map) throws Exception {
SyncFrontTradeRequest self = new SyncFrontTradeRequest();
return TeaModel.build(map, self);
}
public SyncFrontTradeRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public SyncFrontTradeRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public SyncFrontTradeRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public SyncFrontTradeRequest setBizContent(String bizContent) {
this.bizContent = bizContent;
return this;
}
public String getBizContent() {
return this.bizContent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy