All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayFundTransGroupfundsPayorderCreateResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

import com.alipay.api.internal.mapping.ApiField;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.fund.trans.groupfunds.payorder.create response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 17:32:00
 */
public class AlipayFundTransGroupfundsPayorderCreateResponse extends AlipayResponse {

	private static final long serialVersionUID = 6897882948517977115L;

	/** 
	 * 业务类型,客户端透传给收银台。默认值:biz_account_transfer
	 */
	@ApiField("biz_type")
	private String bizType;

	/** 
	 * 付款实际关联的订单号,小程序唤起收银台后传入进行支付
	 */
	@ApiField("transfer_no")
	private String transferNo;

	public void setBizType(String bizType) {
		this.bizType = bizType;
	}
	public String getBizType( ) {
		return this.bizType;
	}

	public void setTransferNo(String transferNo) {
		this.transferNo = transferNo;
	}
	public String getTransferNo( ) {
		return this.transferNo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy