com.alipay.api.response.AnttechBlockchainTwcTradeinfoQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: anttech.blockchain.twc.tradeinfo.query response.
*
* @author auto create
* @since 1.0, 2024-08-12 11:37:39
*/
public class AnttechBlockchainTwcTradeinfoQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1697499867231286775L;
/**
* 订单核验的结果说明
*/
@ApiField("desc")
private String desc;
/**
* 是否与订单的信息一致
*/
@ApiField("match")
private Boolean match;
/**
* 订单核验的结果状态码
*/
@ApiField("status")
private Long status;
public void setDesc(String desc) {
this.desc = desc;
}
public String getDesc( ) {
return this.desc;
}
public void setMatch(Boolean match) {
this.match = match;
}
public Boolean getMatch( ) {
return this.match;
}
public void setStatus(Long status) {
this.status = status;
}
public Long getStatus( ) {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy