cn.com.antcloud.api.ato.v1_0.response.QueryRealpersonFacevrfResponse Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.response;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;
/**
* 查询认证的结果和相关信息 */
public class QueryRealpersonFacevrfResponse extends AntCloudProdResponse {
private String certifyState;
private String attackFlag;
private String alivePhoto;
/**
* 实人认证结果
* PROCESSING(初始化)
* SUCCESS(认证通过)FAIL(认证不通过) */
public String getCertifyState() {
return this.certifyState;
}
/**
* 实人认证结果
* PROCESSING(初始化)
* SUCCESS(认证通过)FAIL(认证不通过) */
public void setCertifyState(String certifyState) {
this.certifyState = certifyState;
}
/**
* 【solution_type=H5 | APP 返回】
* 本次认证是否存在安全风险
* true(检测到安全风险)
* false(未检测到安全风险) */
public String getAttackFlag() {
return this.attackFlag;
}
/**
* 【solution_type=H5 | APP 返回】
* 本次认证是否存在安全风险
* true(检测到安全风险)
* false(未检测到安全风险) */
public void setAttackFlag(String attackFlag) {
this.attackFlag = attackFlag;
}
/**
* 【solution_type=H5 | APP 返回】
* base64过后的二值化图片 */
public String getAlivePhoto() {
return this.alivePhoto;
}
/**
* 【solution_type=H5 | APP 返回】
* base64过后的二值化图片 */
public void setAlivePhoto(String alivePhoto) {
this.alivePhoto = alivePhoto;
}
}