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, 2024-06-18 22:14:14
*/
public class DatadigitalFincloudGeneralsaasFaceVerificationQueryModel extends AlipayObject {
private static final long serialVersionUID = 3847715638265344225L;
/**
* 填入人脸核身初始化阶段获取到的certify_id
*/
@ApiField("certify_id")
private String certifyId;
/**
* 是否需要返回活体结果图片,默认为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