com.alipay.api.response.AlipayEbppInvoiceResultGetResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.AntInvoiceResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.ebpp.invoice.result.get response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:53
*/
public class AlipayEbppInvoiceResultGetResponse extends AlipayResponse {
private static final long serialVersionUID = 3746512297729453844L;
/**
* 发票详细信息
开票返回结果数据列表。
根据platform_tid查询时,可返回多条开票结果数据。
根据apply_id查询时,返回数组中只会有一条数据
*/
@ApiListField("invoice_result_list")
@ApiField("ant_invoice_result")
private List invoiceResultList;
public void setInvoiceResultList(List invoiceResultList) {
this.invoiceResultList = invoiceResultList;
}
public List getInvoiceResultList( ) {
return this.invoiceResultList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy