com.alipay.api.response.ZolozAuthenticationCustomerAnonymousfacesearchMatchResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.FaceSearchUserInfo;
import com.alipay.api.domain.FaceSearchAnonymousUserInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zoloz.authentication.customer.anonymousfacesearch.match response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:34
*/
public class ZolozAuthenticationCustomerAnonymousfacesearchMatchResponse extends AlipayResponse {
private static final long serialVersionUID = 4198693712177929323L;
/**
* 搜索到的人脸候选集
*/
@ApiListField("candidatelist")
@ApiField("face_search_user_info")
private List candidatelist;
/**
* 人脸搜索找到的用户
*/
@ApiField("foundface")
private FaceSearchUserInfo foundface;
/**
* 返回详细码
*/
@ApiField("retcodesub")
private String retcodesub;
/**
* 操作成功
*/
@ApiField("retmessagesub")
private String retmessagesub;
/**
* 返回账户信息:merchantid/merchantuid
*/
@ApiListField("userinfolist")
@ApiField("face_search_anonymous_user_info")
private List userinfolist;
public void setCandidatelist(List candidatelist) {
this.candidatelist = candidatelist;
}
public List getCandidatelist( ) {
return this.candidatelist;
}
public void setFoundface(FaceSearchUserInfo foundface) {
this.foundface = foundface;
}
public FaceSearchUserInfo getFoundface( ) {
return this.foundface;
}
public void setRetcodesub(String retcodesub) {
this.retcodesub = retcodesub;
}
public String getRetcodesub( ) {
return this.retcodesub;
}
public void setRetmessagesub(String retmessagesub) {
this.retmessagesub = retmessagesub;
}
public String getRetmessagesub( ) {
return this.retmessagesub;
}
public void setUserinfolist(List userinfolist) {
this.userinfolist = userinfolist;
}
public List getUserinfolist( ) {
return this.userinfolist;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy