Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozAuthenticationCustomerFaceverifyMatchResponse.cs

24 lines
597 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozAuthenticationCustomerFaceverifyMatchResponse.
/// </summary>
public class ZolozAuthenticationCustomerFaceverifyMatchResponse : AopResponse
{
/// <summary>
/// 是否为攻击
/// </summary>
[XmlElement("attack")]
public bool Attack { get; set; }
/// <summary>
/// 人脸比对结果:成功或者失败
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
}
}