com.aliyuncs.cloudauth.model.v20190307.DescribeVerifyResultResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-cloudauth Show documentation
Show all versions of aliyun-java-sdk-cloudauth Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.cloudauth.model.v20190307;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.cloudauth.transform.v20190307.DescribeVerifyResultResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeVerifyResultResponse extends AcsResponse {
private String requestId;
private Integer verifyStatus;
private Float authorityComparisionScore;
private Float faceComparisonScore;
private Float idCardFaceComparisonScore;
private Material material;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getVerifyStatus() {
return this.verifyStatus;
}
public void setVerifyStatus(Integer verifyStatus) {
this.verifyStatus = verifyStatus;
}
public Float getAuthorityComparisionScore() {
return this.authorityComparisionScore;
}
public void setAuthorityComparisionScore(Float authorityComparisionScore) {
this.authorityComparisionScore = authorityComparisionScore;
}
public Float getFaceComparisonScore() {
return this.faceComparisonScore;
}
public void setFaceComparisonScore(Float faceComparisonScore) {
this.faceComparisonScore = faceComparisonScore;
}
public Float getIdCardFaceComparisonScore() {
return this.idCardFaceComparisonScore;
}
public void setIdCardFaceComparisonScore(Float idCardFaceComparisonScore) {
this.idCardFaceComparisonScore = idCardFaceComparisonScore;
}
public Material getMaterial() {
return this.material;
}
public void setMaterial(Material material) {
this.material = material;
}
public static class Material {
private String faceImageUrl;
private String idCardName;
private String idCardNumber;
private String faceQuality;
private String faceGlobalUrl;
private Boolean faceMask;
private List videoUrls;
private IdCardInfo idCardInfo;
public String getFaceImageUrl() {
return this.faceImageUrl;
}
public void setFaceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
}
public String getIdCardName() {
return this.idCardName;
}
public void setIdCardName(String idCardName) {
this.idCardName = idCardName;
}
public String getIdCardNumber() {
return this.idCardNumber;
}
public void setIdCardNumber(String idCardNumber) {
this.idCardNumber = idCardNumber;
}
public String getFaceQuality() {
return this.faceQuality;
}
public void setFaceQuality(String faceQuality) {
this.faceQuality = faceQuality;
}
public String getFaceGlobalUrl() {
return this.faceGlobalUrl;
}
public void setFaceGlobalUrl(String faceGlobalUrl) {
this.faceGlobalUrl = faceGlobalUrl;
}
public Boolean getFaceMask() {
return this.faceMask;
}
public void setFaceMask(Boolean faceMask) {
this.faceMask = faceMask;
}
public List getVideoUrls() {
return this.videoUrls;
}
public void setVideoUrls(List videoUrls) {
this.videoUrls = videoUrls;
}
public IdCardInfo getIdCardInfo() {
return this.idCardInfo;
}
public void setIdCardInfo(IdCardInfo idCardInfo) {
this.idCardInfo = idCardInfo;
}
public static class IdCardInfo {
private String number;
private String address;
private String nationality;
private String endDate;
private String frontImageUrl;
private String authority;
private String sex;
private String name;
private String birth;
private String backImageUrl;
private String startDate;
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getNationality() {
return this.nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality;
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getFrontImageUrl() {
return this.frontImageUrl;
}
public void setFrontImageUrl(String frontImageUrl) {
this.frontImageUrl = frontImageUrl;
}
public String getAuthority() {
return this.authority;
}
public void setAuthority(String authority) {
this.authority = authority;
}
public String getSex() {
return this.sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getBirth() {
return this.birth;
}
public void setBirth(String birth) {
this.birth = birth;
}
public String getBackImageUrl() {
return this.backImageUrl;
}
public void setBackImageUrl(String backImageUrl) {
this.backImageUrl = backImageUrl;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
}
}
@Override
public DescribeVerifyResultResponse getInstance(UnmarshallerContext context) {
return DescribeVerifyResultResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy