NewGaoKaoApi/PaymentSDK/AliPay/Response/MybankCreditUserCertifyOpen...

36 lines
1.0 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>
/// MybankCreditUserCertifyOpenQueryResponse.
/// </summary>
public class MybankCreditUserCertifyOpenQueryResponse : AopResponse
{
/// <summary>
/// 认证错误原因,扩展字段,默认不返回
/// </summary>
[XmlElement("fail_reason")]
public string FailReason { get; set; }
/// <summary>
/// 认证的主体信息,一般的认证场景返回为空
/// </summary>
[XmlElement("identity_info")]
public string IdentityInfo { get; set; }
/// <summary>
/// 认证主体附件信息,主要为图片类材料,一般的认证场景都是返回空
/// </summary>
[XmlElement("material_info")]
public string MaterialInfo { get; set; }
/// <summary>
/// 是否通过通过为T不通过为F
/// </summary>
[XmlElement("passed")]
public string Passed { get; set; }
}
}