using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
///
/// ZolozAuthenticationCustomerFaceverifyMatchResponse.
///
public class ZolozAuthenticationCustomerFaceverifyMatchResponse : AopResponse
{
///
/// 是否为攻击
///
[XmlElement("attack")]
public bool Attack { get; set; }
///
/// 人脸比对结果:成功或者失败
///
[XmlElement("result")]
public string Result { get; set; }
}
}