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

24 lines
580 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>
/// ZolozIdentificationUserWebInitializeResponse.
/// </summary>
public class ZolozIdentificationUserWebInitializeResponse : AopResponse
{
/// <summary>
/// 扩展结果
/// </summary>
[XmlElement("extern_info")]
public string ExternInfo { get; set; }
/// <summary>
/// 刷脸认证的唯一标识
/// </summary>
[XmlElement("zim_id")]
public string ZimId { get; set; }
}
}