NewGaoKaoApi/PaymentSDK/AliPay/Response/ZhimaCustomerCertificationQ...

42 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// ZhimaCustomerCertificationQueryResponse.
/// </summary>
public class ZhimaCustomerCertificationQueryResponse : AopResponse
{
/// <summary>
/// 认证的主体属性信息,一般的认证场景都是返回空
/// </summary>
[XmlElement("attribute_info")]
public string AttributeInfo { get; set; }
/// <summary>
/// 包含了认证过程中的认证材料和过程记录
/// </summary>
[XmlElement("channel_statuses")]
public string ChannelStatuses { get; set; }
/// <summary>
/// 认证不通过的原因
/// </summary>
[XmlElement("failed_reason")]
public string FailedReason { get; set; }
/// <summary>
/// 认证的主体信息,一般的认证场景返回为空
/// </summary>
[XmlElement("identity_info")]
public string IdentityInfo { get; set; }
/// <summary>
/// 认证是否通过,通过为true不通过为false
/// </summary>
[XmlElement("passed")]
public string Passed { get; set; }
}
}