com.alipay.api.response.DatadigitalFincloudGeneralsaasBankcardCheckResponse 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: datadigital.fincloud.generalsaas.bankcard.check response.
*
* @author auto create
* @since 1.0, 2024-11-07 19:27:21
*/
public class DatadigitalFincloudGeneralsaasBankcardCheckResponse extends AlipayResponse {
private static final long serialVersionUID = 8544115178161589421L;
/**
* 认证单据号,用于认证问题排查
*/
@ApiField("certify_id")
private String certifyId;
/**
* 核验详情
*/
@ApiField("detail")
private String detail;
/**
* 是否核验通过
*/
@ApiField("match")
private String match;
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
}
public String getCertifyId( ) {
return this.certifyId;
}
public void setDetail(String detail) {
this.detail = detail;
}
public String getDetail( ) {
return this.detail;
}
public void setMatch(String match) {
this.match = match;
}
public String getMatch( ) {
return this.match;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy