
com.alipay.api.domain.AlipayEbppInvoiceApplyResultSyncModel 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;
/**
* 同步发票申请结果
*
* @author auto create
* @since 1.0, 2017-05-09 14:11:19
*/
public class AlipayEbppInvoiceApplyResultSyncModel extends AlipayObject {
private static final long serialVersionUID = 2897388522627298895L;
/**
* 支付宝发起发票申请的id,该id具有唯一性,该字段由支付宝向税控发起申请的时候带过去,作为支付宝向税控开票申请的唯一标志
*/
@ApiField("apply_id")
private String applyId;
/**
* 支付宝向税控商或ISV发起发票申请后,对应这笔申请的发票开具结果。
取值如下:
SUCCESS:成功;FAIL:失败
*/
@ApiField("result")
private String result;
/**
* 结果码,支付宝向税控商或ISV发起发票申请后,对应这笔申请的发票开具结果进行详细说明的结果码。
取值如下:
成功(SUCCESS),
参数不合法(PARAMETER_ILLEGAL),
商户税控设备异常(MERCHANT_TAX_DEVICE_ERROR).
*/
@ApiField("result_code")
private String resultCode;
/**
* 结果描述,支付宝向税控商或ISV发起发票申请后,对应这笔申请的发票开具结果描述信息。
*/
@ApiField("result_msg")
private String resultMsg;
/**
* 该字段是税控商或ISV收到支付宝开票请求后生成的申请id,由税控商或isv自己生成,该id具有唯一性
*/
@ApiField("tax_apply_id")
private String taxApplyId;
public String getApplyId() {
return this.applyId;
}
public void setApplyId(String applyId) {
this.applyId = applyId;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
public String getResultCode() {
return this.resultCode;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public String getResultMsg() {
return this.resultMsg;
}
public void setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
}
public String getTaxApplyId() {
return this.taxApplyId;
}
public void setTaxApplyId(String taxApplyId) {
this.taxApplyId = taxApplyId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy