com.wechat.pay.java.service.profitsharing.model.SplitBillRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechatpay-java Show documentation
Show all versions of wechatpay-java Show documentation
A Java SDK for WeChat Pay APIv3
// Copyright 2021 Tencent Inc. All rights reserved.
//
// 微信支付分账API
//
// 微信支付分账API
//
// API version: 0.0.9
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.profitsharing.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
/** SplitBillRequest */
public class SplitBillRequest {
/** 子商户号 说明:若商户是直连商户: - 无需填写该字段 若商户是服务商: - 不填则默认返回服务商下的所有分账账单。 - 如需下载某个子商户下的分账账单,则填指定的子商户号。 */
@SerializedName("sub_mchid")
@Expose(serialize = false)
private String subMchid;
/** 账单日期 说明:格式YYYY-MM-DD。仅支持三个月内的账单下载申请。 */
@SerializedName("bill_date")
@Expose(serialize = false)
private String billDate;
/** 压缩类型 说明:不填则以不压缩的方式返回数据流 */
@SerializedName("tar_type")
@Expose(serialize = false)
private SplitBillTarType tarType;
public String getSubMchid() {
return subMchid;
}
public void setSubMchid(String subMchid) {
this.subMchid = subMchid;
}
public String getBillDate() {
return billDate;
}
public void setBillDate(String billDate) {
this.billDate = billDate;
}
public SplitBillTarType getTarType() {
return tarType;
}
public void setTarType(SplitBillTarType tarType) {
this.tarType = tarType;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SplitBillRequest {\n");
sb.append(" subMchid: ").append(toIndentedString(subMchid)).append("\n");
sb.append(" billDate: ").append(toIndentedString(billDate)).append("\n");
sb.append(" tarType: ").append(toIndentedString(tarType)).append("\n");
sb.append("}");
return sb.toString();
}
}