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