com.alipay.api.response.DatadigitalFincloudGeneralsaasMobilethreemetaSimpleCheckResponse 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.mobilethreemeta.simple.check response.
*
* @author auto create
* @since 1.0, 2024-11-20 21:07:20
*/
public class DatadigitalFincloudGeneralsaasMobilethreemetaSimpleCheckResponse extends AlipayResponse {
private static final long serialVersionUID = 6413163951996896615L;
/**
* 认证单据号,用于认证问题排查
*/
@ApiField("certify_id")
private String certifyId;
/**
* 核验详情
*/
@ApiField("detail")
private String detail;
/**
* 手机号对应的运营商名称
*/
@ApiField("isp")
private String isp;
/**
* 是否核验通过
*/
@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 setIsp(String isp) {
this.isp = isp;
}
public String getIsp( ) {
return this.isp;
}
public void setMatch(String match) {
this.match = match;
}
public String getMatch( ) {
return this.match;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy