22 lines
597 B
C#
22 lines
597 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ZhimaCustomerCertificationQueryResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class ZhimaCustomerEpCertificationQueryResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 如果认证没有通过会显示失败原因,更详细的情况在channel_statuses参数里面
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("failed_reason")]
|
||
|
|
public string FailedReason { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 认证是否通过,通过为true,不通过为false
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("passed")]
|
||
|
|
public string Passed { get; set; }
|
||
|
|
}
|
||
|
|
}
|