com.alipay.api.response.AlipayFundBatchUniTransferResponse 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.fund.batch.uni.transfer response.
*
* @author auto create
* @since 1.0, 2024-11-19 14:52:17
*/
public class AlipayFundBatchUniTransferResponse extends AlipayResponse {
private static final long serialVersionUID = 1718662564469144812L;
/**
* 支付宝内部的批次ID
*/
@ApiField("batch_trans_id")
private String batchTransId;
/**
* 商户的批次号
*/
@ApiField("out_batch_no")
private String outBatchNo;
/**
* INIT:批次落单成功
*/
@ApiField("status")
private String status;
public void setBatchTransId(String batchTransId) {
this.batchTransId = batchTransId;
}
public String getBatchTransId( ) {
return this.batchTransId;
}
public void setOutBatchNo(String outBatchNo) {
this.outBatchNo = outBatchNo;
}
public String getOutBatchNo( ) {
return this.outBatchNo;
}
public void setStatus(String status) {
this.status = status;
}
public String getStatus( ) {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy