com.wechat.pay.java.service.transferbatch.model.GetTransferBatchByOutNoRequest 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
//
// * 场景及业务流程: 商户可通过该产品实现同时向多个用户微信零钱进行转账的操作,可用于发放奖金补贴、佣金货款结算、员工报销等场景。
// [https://pay.weixin.qq.com/index.php/public/product/detail?pid=108&productType=0](https://pay.weixin.qq.com/index.php/public/product/detail?pid=108&productType=0) * 接入步骤: * 商户在微信支付商户平台开通“批量转账到零钱”产品权限,并勾选“使用API方式发起转账”。 * 调用批量转账接口,对多个用户微信零钱发起转账。 * 调用查询批次接口,可获取到转账批次详情及当前状态。 * 调用查询明细接口,可获取到单条转账明细详情及当前状态。
//
// API version: 1.0.5
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.transferbatch.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
/** GetTransferBatchByOutNoRequest */
public class GetTransferBatchByOutNoRequest {
/** 商家批次单号 说明:商户系统内部的商家批次单号,在商户系统内部唯一 */
@SerializedName("out_batch_no")
@Expose(serialize = false)
private String outBatchNo;
/**
* 是否查询转账明细单 说明:true-是;false-否,默认否。商户可选择是否查询指定状态的转账明细单,当转账批次单状态为“FINISHED”(已完成)时,才会返回满足条件的转账明细单
*/
@SerializedName("need_query_detail")
@Expose(serialize = false)
private Boolean needQueryDetail;
/** 请求资源起始位置 说明:该次请求资源(转账明细单)的起始位置,从0开始,默认值为0 */
@SerializedName("offset")
@Expose(serialize = false)
private Integer offset;
/** 最大资源条数 说明:该次请求可返回的最大资源(转账明细单)条数,最小20条,最大100条,不传则默认20条。不足20条按实际条数返回 */
@SerializedName("limit")
@Expose(serialize = false)
private Integer limit;
/**
* 明细状态 说明:WAIT_PAY: 待确认。待商户确认, 符合免密条件时, 系统会自动扭转为转账中 ALL:全部。需要同时查询转账成功、失败和待确认的明细单 SUCCESS:转账成功
* FAIL:转账失败。需要确认失败原因后,再决定是否重新发起对该笔明细单的转账(并非整个转账批次单)
*/
@SerializedName("detail_status")
@Expose(serialize = false)
private String detailStatus;
public String getOutBatchNo() {
return outBatchNo;
}
public void setOutBatchNo(String outBatchNo) {
this.outBatchNo = outBatchNo;
}
public Boolean getNeedQueryDetail() {
return needQueryDetail;
}
public void setNeedQueryDetail(Boolean needQueryDetail) {
this.needQueryDetail = needQueryDetail;
}
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public String getDetailStatus() {
return detailStatus;
}
public void setDetailStatus(String detailStatus) {
this.detailStatus = detailStatus;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetTransferBatchByOutNoRequest {\n");
sb.append(" outBatchNo: ").append(toIndentedString(outBatchNo)).append("\n");
sb.append(" needQueryDetail: ").append(toIndentedString(needQueryDetail)).append("\n");
sb.append(" offset: ").append(toIndentedString(offset)).append("\n");
sb.append(" limit: ").append(toIndentedString(limit)).append("\n");
sb.append(" detailStatus: ").append(toIndentedString(detailStatus)).append("\n");
sb.append("}");
return sb.toString();
}
}