com.volcengine.service.visual.model.request.VisualCertTokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.visual.model.request;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.ArrayList;
@Data
public class VisualCertTokenRequest {
@JSONField(name = "req_key")
String reqKey;
@JSONField(name = "sts_token")
String stsToken;
@JSONField(name = "tos_info")
JSONObject tosInfo;
@JSONField(name = "ref_source")
String refSource;
@JSONField(name = "liveness_type")
String livenessType;
@JSONField(name = "idcard_name")
String idcardName;
@JSONField(name = "idcard_no")
String idcardNo;
@JSONField(name = "ref_image")
String refImage;
@JSONField(name = "liveness_timeout")
Integer livenessTimeout = 10;
@JSONField(name = "motion_list")
ArrayList motionList = new ArrayList<>();
@JSONField(name = "fixed_motion_list")
ArrayList fixedMotionList = new ArrayList<>();
@JSONField(name = "motion_count")
Integer motionCount = 2;
@JSONField(name = "max_liveness_trial")
Integer maxLivenessTrial = 10;
@JSONField(name = "callback_info")
JSONObject callBackInfo;
@JSONField(name = "config_id")
String configId;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy