com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models.QueryAntchainAtoRealpersonFacevrfResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ak_195dff03d395462ea294bafdba69df3f Show documentation
Show all versions of openapi-ak_195dff03d395462ea294bafdba69df3f Show documentation
Ant Chain ak_195dff03d395462ea294bafdba69df3f SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models;
import com.aliyun.tea.*;
public class QueryAntchainAtoRealpersonFacevrfResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 实人认证结果
// PROCESSING(初始化)
// SUCCESS(认证通过)FAIL(认证不通过)
@NameInMap("certify_state")
public String certifyState;
// 【solution_type=H5 | APP 返回】
// 本次认证是否存在安全风险
// true(检测到安全风险)
// false(未检测到安全风险)
@NameInMap("attack_flag")
public String attackFlag;
// 【solution_type=H5 | APP 返回】
// base64过后的二值化图片
@NameInMap("alive_photo")
public String alivePhoto;
public static QueryAntchainAtoRealpersonFacevrfResponse build(java.util.Map map) throws Exception {
QueryAntchainAtoRealpersonFacevrfResponse self = new QueryAntchainAtoRealpersonFacevrfResponse();
return TeaModel.build(map, self);
}
public QueryAntchainAtoRealpersonFacevrfResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryAntchainAtoRealpersonFacevrfResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryAntchainAtoRealpersonFacevrfResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryAntchainAtoRealpersonFacevrfResponse setCertifyState(String certifyState) {
this.certifyState = certifyState;
return this;
}
public String getCertifyState() {
return this.certifyState;
}
public QueryAntchainAtoRealpersonFacevrfResponse setAttackFlag(String attackFlag) {
this.attackFlag = attackFlag;
return this;
}
public String getAttackFlag() {
return this.attackFlag;
}
public QueryAntchainAtoRealpersonFacevrfResponse setAlivePhoto(String alivePhoto) {
this.alivePhoto = alivePhoto;
return this;
}
public String getAlivePhoto() {
return this.alivePhoto;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy