com.alipay.api.response.AnttechBlockchainFinanceTruspleLoanapplySubmitResponse 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: anttech.blockchain.finance.trusple.loanapply.submit response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:36:21
*/
public class AnttechBlockchainFinanceTruspleLoanapplySubmitResponse extends AlipayResponse {
private static final long serialVersionUID = 2246562624586526227L;
/**
* Trusple借据号
*/
@ApiField("loan_id")
private String loanId;
/**
* 结果状态,S表示成功,F表示明确失败,U表示未知异常。一般返回U,调用方可能会重试
*/
@ApiField("result_status")
private String resultStatus;
public void setLoanId(String loanId) {
this.loanId = loanId;
}
public String getLoanId( ) {
return this.loanId;
}
public void setResultStatus(String resultStatus) {
this.resultStatus = resultStatus;
}
public String getResultStatus( ) {
return this.resultStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy