com.alipay.api.response.AlipayDataDataserviceBillDownloadurlQueryResponse 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: alipay.data.dataservice.bill.downloadurl.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:49
*/
public class AlipayDataDataserviceBillDownloadurlQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5341355997815191784L;
/**
* 账单下载地址链接,获取连接后30秒后未下载,链接地址失效。
*/
@ApiField("bill_download_url")
private String billDownloadUrl;
/**
* 描述本次申请的账单文件状态。
EMPTY_DATA_WITH_BILL_FILE:当天无账单业务数据&&可以获取到空数据账单文件。
*/
@ApiField("bill_file_code")
private String billFileCode;
public void setBillDownloadUrl(String billDownloadUrl) {
this.billDownloadUrl = billDownloadUrl;
}
public String getBillDownloadUrl( ) {
return this.billDownloadUrl;
}
public void setBillFileCode(String billFileCode) {
this.billFileCode = billFileCode;
}
public String getBillFileCode( ) {
return this.billFileCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy