com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models.GetAntchainAtoTradeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ak_195dff03d395462ea294bafdba69df3f Show documentation
Show all versions of openapi-ak_195dff03d395462ea294bafdba69df3f Show documentation
Ant Chain ak_195dff03d395462ea294bafdba69df3f SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models;
import com.aliyun.tea.*;
public class GetAntchainAtoTradeRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 查询信息,必须遵循json字符串格式
@NameInMap("biz_content")
@Validation(required = true)
public String bizContent;
// 接口类型
@NameInMap("type")
@Validation(required = true)
public String type;
public static GetAntchainAtoTradeRequest build(java.util.Map map) throws Exception {
GetAntchainAtoTradeRequest self = new GetAntchainAtoTradeRequest();
return TeaModel.build(map, self);
}
public GetAntchainAtoTradeRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public GetAntchainAtoTradeRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public GetAntchainAtoTradeRequest setBizContent(String bizContent) {
this.bizContent = bizContent;
return this;
}
public String getBizContent() {
return this.bizContent;
}
public GetAntchainAtoTradeRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy