All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.ZolozIdentificationCustomerEnrollcertifyQueryModel Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 人脸注册或者认证的结果查询
 *
 * @author auto create
 * @since 1.0, 2023-03-03 16:09:37
 */
public class ZolozIdentificationCustomerEnrollcertifyQueryModel extends AlipayObject {

	private static final long serialVersionUID = 5139675496189831251L;

	/**
	 * 业务单据号,用于核对和排查
	 */
	@ApiField("biz_id")
	private String bizId;

	/**
	 * 0:匿名注册  1:匿名认证   2:实名认证
	 */
	@ApiField("face_type")
	private Long faceType;

	/**
	 * 是否需要返回人脸照片
	 */
	@ApiField("need_img")
	private Boolean needImg;

	/**
	 * zimId,用于查询认证结果
	 */
	@ApiField("zim_id")
	private String zimId;

	public String getBizId() {
		return this.bizId;
	}
	public void setBizId(String bizId) {
		this.bizId = bizId;
	}

	public Long getFaceType() {
		return this.faceType;
	}
	public void setFaceType(Long faceType) {
		this.faceType = faceType;
	}

	public Boolean getNeedImg() {
		return this.needImg;
	}
	public void setNeedImg(Boolean needImg) {
		this.needImg = needImg;
	}

	public String getZimId() {
		return this.zimId;
	}
	public void setZimId(String zimId) {
		this.zimId = zimId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy