using System; using System.Xml.Serialization; using System.Collections.Generic; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// ZolozAuthenticationCustomerAnonymousfacesearchMatchResponse. /// public class ZolozAuthenticationCustomerAnonymousfacesearchMatchResponse : AopResponse { /// /// 搜索到的人脸候选集 /// [XmlArray("candidatelist")] [XmlArrayItem("face_search_user_info")] public List Candidatelist { get; set; } /// /// 人脸搜索找到的用户 /// [XmlElement("foundface")] public FaceSearchUserInfo Foundface { get; set; } /// /// 返回详细码 /// [XmlElement("retcodesub")] public string Retcodesub { get; set; } /// /// 操作成功 /// [XmlElement("retmessagesub")] public string Retmessagesub { get; set; } /// /// 返回账户信息:merchantid/merchantuid /// [XmlArray("userinfolist")] [XmlArrayItem("face_search_anonymous_user_info")] public List Userinfolist { get; set; } } }