You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
607 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipaySecurityProdFacerepoSearchResponse.
/// </summary>
public class AlipaySecurityProdFacerepoSearchResponse : AopResponse
{
/// <summary>
/// 扩展参数
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 从入参指定的人脸库分组中搜索出来的相似度最高的人脸id
/// </summary>
[XmlElement("face_id")]
public string FaceId { get; set; }
}
}