com.alipay.api.response.AlipayTradeCustomsQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.CustomsDeclareRecordInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.trade.customs.query response.
*
* @author auto create
* @since 1.0, 2016-12-08 00:47:36
*/
public class AlipayTradeCustomsQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6195585775594517916L;
/**
* 不存在记录的报关请求号。多个值用逗号分隔,单次最多10个;每个报关请求号String(32)
*/
@ApiField("not_found")
private String notFound;
/**
* 匹配到的列表。每个记录代表一条报关记录
*/
@ApiListField("records")
@ApiField("customs_declare_record_info")
private List records;
public void setNotFound(String notFound) {
this.notFound = notFound;
}
public String getNotFound( ) {
return this.notFound;
}
public void setRecords(List records) {
this.records = records;
}
public List getRecords( ) {
return this.records;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy