com.github.binarywang.wxpay.bean.request.WxPayApplyFundFlowBillV3Request Maven / Gradle / Ivy
The newest version!
package com.github.binarywang.wxpay.bean.request;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.io.Serializable;
/**
*
* 微信支付-申请账单入参
*
*
* @author thinsstar
*/
@Data
@NoArgsConstructor
public class WxPayApplyFundFlowBillV3Request implements Serializable {
/**
* 账户类型
*/
public static class AccountType {
/**
* BASIC:基本账户
*/
public static final String BASIC = "BASIC";
/**
* OPERATION:运营账户
*/
public static final String OPERATION = "OPERATION";
/**
* FEES:手续费账户
*/
public static final String FEES = "FEES";
}
private static final long serialVersionUID = 1L;
/**
*
* 字段名:账单日期
* 变量名:bill_date
* 是否必填:是
* 类型:string[1,10]
* 描述:
* 格式YYYY-MM-DD
* 仅支持三个月内的账单下载申请。
* 示例值:2019-06-11
*
*/
@SerializedName(value = "bill_date")
private String billDate;
/**
*
* 字段名:资金账户类型
* 变量名:account_type
* 是否必填:是
* 类型:string[1,32]
* 描述:
* 不填则默认是BASIC
* 枚举值:
* BASIC:基本账户
* OPERATION:运营账户
* FEES:手续费账户
* 示例值:BASIC
*
*/
@SerializedName(value = "account_type")
private String accountType;
/**
*
* 字段名:压缩类型
* 变量名:tar_type
* 是否必填:是
* 类型:string[1,32]
* 描述:
* 不填则默认是数据流
* 枚举值:
* GZIP:返回格式为.gzip的压缩包账单
* 示例值:GZIP
*
*/
@SerializedName(value = "tar_type")
private String tarType;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy