com.alipay.api.response.MybankCreditSceneprodLoanApplyResponse 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: mybank.credit.sceneprod.loan.apply response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:39
*/
public class MybankCreditSceneprodLoanApplyResponse extends AlipayResponse {
private static final long serialVersionUID = 4168333165154212759L;
/**
* 网商银行内部申请单号
*/
@ApiField("app_seqno")
private String appSeqno;
/**
* 是否需要升级支付宝账户,如果为true,则需要引导客户进行支付宝账户升级,否则会影响客户的审批流程
*/
@ApiField("need_auth")
private String needAuth;
/**
* 外部机构订单号
*/
@ApiField("out_order_no")
private String outOrderNo;
/**
* 是否可重试
*/
@ApiField("retry")
private String retry;
/**
* 网商traceId,便于查询日志内容
*/
@ApiField("trace_id")
private String traceId;
public void setAppSeqno(String appSeqno) {
this.appSeqno = appSeqno;
}
public String getAppSeqno( ) {
return this.appSeqno;
}
public void setNeedAuth(String needAuth) {
this.needAuth = needAuth;
}
public String getNeedAuth( ) {
return this.needAuth;
}
public void setOutOrderNo(String outOrderNo) {
this.outOrderNo = outOrderNo;
}
public String getOutOrderNo( ) {
return this.outOrderNo;
}
public void setRetry(String retry) {
this.retry = retry;
}
public String getRetry( ) {
return this.retry;
}
public void setTraceId(String traceId) {
this.traceId = traceId;
}
public String getTraceId( ) {
return this.traceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy