com.alipay.api.domain.ZolozIdentificationCustomerSmilerepoSyncModel 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.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 人脸本地比对结果同步汇报
*
* @author auto create
* @since 1.0, 2023-01-03 10:56:42
*/
public class ZolozIdentificationCustomerSmilerepoSyncModel extends AlipayObject {
private static final long serialVersionUID = 3514196649852515717L;
/**
* 活体图片encode base64 String
*/
@ApiField("auth_img")
private String authImg;
/**
* 商户的机具编码
*/
@ApiField("device_num")
private String deviceNum;
/**
* 人脸定制分配的场景码
*/
@ApiField("scene_code")
private String sceneCode;
/**
* 人脸相关的比对结果信
*/
@ApiField("zface_info")
private String zfaceInfo;
public String getAuthImg() {
return this.authImg;
}
public void setAuthImg(String authImg) {
this.authImg = authImg;
}
public String getDeviceNum() {
return this.deviceNum;
}
public void setDeviceNum(String deviceNum) {
this.deviceNum = deviceNum;
}
public String getSceneCode() {
return this.sceneCode;
}
public void setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
}
public String getZfaceInfo() {
return this.zfaceInfo;
}
public void setZfaceInfo(String zfaceInfo) {
this.zfaceInfo = zfaceInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy