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

com.alipay.api.domain.FaceCheckInitResult 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.39.218.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, 2024-08-19 10:59:56
 */
public class FaceCheckInitResult extends AlipayObject {

	private static final long serialVersionUID = 2638922862994353113L;

	/**
	 * 校验单据号
	 */
	@ApiField("verify_biz_no")
	private String verifyBizNo;

	/**
	 * 校验id
	 */
	@ApiField("verify_id")
	private String verifyId;

	/**
	 * 校验url
	 */
	@ApiField("verify_url")
	private String verifyUrl;

	public String getVerifyBizNo() {
		return this.verifyBizNo;
	}
	public void setVerifyBizNo(String verifyBizNo) {
		this.verifyBizNo = verifyBizNo;
	}

	public String getVerifyId() {
		return this.verifyId;
	}
	public void setVerifyId(String verifyId) {
		this.verifyId = verifyId;
	}

	public String getVerifyUrl() {
		return this.verifyUrl;
	}
	public void setVerifyUrl(String verifyUrl) {
		this.verifyUrl = verifyUrl;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy