
com.alipay.api.domain.DatadigitalFincloudGeneralsaasFaceVerificationQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 人脸核身结果查询
*
* @author auto create
* @since 1.0, 2023-05-11 19:36:50
*/
public class DatadigitalFincloudGeneralsaasFaceVerificationQueryModel extends AlipayObject {
private static final long serialVersionUID = 7443513614918724446L;
/**
* 填入人脸核身初始化阶段获取到的certify_id
*/
@ApiField("certify_id")
private String certifyId;
/**
* 是否需要返回活体结果图片,needAlivePhoto:Y_O (原始图片)、Y_M(虚化,背景马赛克)、N(不返图),默认为N
*/
@ApiField("need_alive_photo")
private String needAlivePhoto;
public String getCertifyId() {
return this.certifyId;
}
public void setCertifyId(String certifyId) {
this.certifyId = certifyId;
}
public String getNeedAlivePhoto() {
return this.needAlivePhoto;
}
public void setNeedAlivePhoto(String needAlivePhoto) {
this.needAlivePhoto = needAlivePhoto;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy