com.alipay.api.domain.ExtContext 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.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;
}
}