Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozIdentificationCustomerCertifyQueryResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
918 B
C#

using System;
using System.Xml.Serialization;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozIdentificationCustomerCertifyQueryResponse.
/// </summary>
public class ZolozIdentificationCustomerCertifyQueryResponse : AopResponse
{
/// <summary>
/// 是否为攻击
/// </summary>
[XmlElement("attack")]
public bool Attack { get; set; }
/// <summary>
/// 业务单据号,用于核对和排查
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 图片字节数组进行Base64编码后的字符串
/// </summary>
[XmlElement("img_str")]
public string ImgStr { get; set; }
/// <summary>
/// 比对结果
/// </summary>
[XmlElement("result")]
public bool Result { get; set; }
}
}