
com.alipay.api.domain.AlipayEbppInvoiceFileQueryModel 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
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 依据发票id查询发票文件信息
*
* @author auto create
* @since 1.0, 2017-05-09 14:11:28
*/
public class AlipayEbppInvoiceFileQueryModel extends AlipayObject {
private static final long serialVersionUID = 5331662197127779185L;
/**
* 支付宝端生成的发票id,该字段可从发票详情查询接口获得
*/
@ApiField("invoice_id")
private String invoiceId;
public String getInvoiceId() {
return this.invoiceId;
}
public void setInvoiceId(String invoiceId) {
this.invoiceId = invoiceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy