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

com.aiwiown.face.domain.PcResultModel Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.domain;

import com.aiwiown.face.ApiObject;
import com.aiwiown.face.internal.mapping.ApiField;

/**
 * 
 * 
* PcResultModel * Date: 2020/5/12 0012 * Time: 10:00 * * @author [email protected] */ public class PcResultModel extends ApiObject { private static final long serialVersionUID = 422150673665880763L; /** * 通过 get_token, notify_url 或者 return_url 返回的活体业务编号。 */ @ApiField("biz_id") private String bizId; /** * 此参数为可选参数,可在下面三种参数中选择,决定了是否返回活体图像数据: *

* 0(默认):不需要图像 * 1:需要返回最佳活体质量图(image_best) * 2:需要返回所有活体图像(image_best+image_action) */ @ApiField("get_image_type") private String getImageType; public String getBizId() { return bizId; } public void setBizId(String bizId) { this.bizId = bizId; } public String getGetImageType() { return getImageType; } public void setGetImageType(String getImageType) { this.getImageType = getImageType; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy