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

com.alipay.api.domain.ExtContext 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.39.218.ALL
Show newest version
package com.alipay.api.domain;

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

/**
 * 云企付,用于透传网络渠道返回的扩展信息。
 *
 * @author auto create
 * @since 1.0, 2020-10-19 19:09:30
 */
public class ExtContext extends AlipayObject {

	private static final long serialVersionUID = 5497325734141352729L;

	/**
	 * ebank_form,银行返回格式类型
	 */
	@ApiField("ebank_form")
	private String ebankForm;

	/**
	 * 机构返回描述
	 */
	@ApiField("return_message")
	private String returnMessage;

	public String getEbankForm() {
		return this.ebankForm;
	}
	public void setEbankForm(String ebankForm) {
		this.ebankForm = ebankForm;
	}

	public String getReturnMessage() {
		return this.returnMessage;
	}
	public void setReturnMessage(String returnMessage) {
		this.returnMessage = returnMessage;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy