com.alipay.api.response.AntMerchantExpandIndirectZftConsultResponse 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: ant.merchant.expand.indirect.zft.consult response.
*
* @author auto create
* @since 1.0, 2024-11-28 13:22:21
*/
public class AntMerchantExpandIndirectZftConsultResponse extends AlipayResponse {
private static final long serialVersionUID = 4239422335565513697L;
/**
* 资金账户是否审核。当调用没有报错时,本值才有参考意义
*/
@ApiField("account_audit")
private Boolean accountAudit;
/**
* 咨询申请单id
*/
@ApiField("order_id")
private String orderId;
/**
* 是否风控审核。当调用没有报错时,本值才有参考意义
*/
@ApiField("risk_audit")
private Boolean riskAudit;
public void setAccountAudit(Boolean accountAudit) {
this.accountAudit = accountAudit;
}
public Boolean getAccountAudit( ) {
return this.accountAudit;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId( ) {
return this.orderId;
}
public void setRiskAudit(Boolean riskAudit) {
this.riskAudit = riskAudit;
}
public Boolean getRiskAudit( ) {
return this.riskAudit;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy