Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZolozIdentificationCustomerIdcardCertifyResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

33 lines
885 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZolozIdentificationCustomerIdcardCertifyResponse.
/// </summary>
public class ZolozIdentificationCustomerIdcardCertifyResponse : AopResponse
{
/// <summary>
/// 证件宝审核结果
/// </summary>
[XmlArray("cert_audit_result")]
[XmlArrayItem("cert_audit_result")]
public List<CertAuditResult> CertAuditResult { get; set; }
/// <summary>
/// 业务校验是否通过
/// </summary>
[XmlElement("passed")]
public bool Passed { get; set; }
/// <summary>
/// 全流程上下文唯一id
/// </summary>
[XmlElement("token")]
public string Token { get; set; }
}
}