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

28 lines
843 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZhimaCustomerCertificationCertifyResponse.
/// </summary>
public class ZhimaCustomerCertificationCertifyResponse : AopResponse
{
/// <summary>
/// 一次认证的唯一标识,在商户调用认证初始化接口的时候获取,认证完成返回的biz_no和请求的一致
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 如果认证没有通过会显示失败原因,如果需要详细的失败原因请使用认证查询接口
/// </summary>
[JsonProperty("failed_reason")]
public string FailedReason { get; set; }
/// <summary>
/// 认证是否通过,通过为true,不通过为false
/// </summary>
[JsonProperty("passed")]
public string Passed { get; set; }
}
}