using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayUserCertdocCertverifyConsultResponse. /// public class AlipayUserCertdocCertverifyConsultResponse : AopResponse { /// /// 具体哪些字段不一致。与预授权的输入字段对应,类型为字符串列表的JSON格式。 /// [XmlElement("fail_params")] public string FailParams { get; set; } /// /// 校验不一致时,描述不一致的原因 /// [XmlElement("fail_reason")] public string FailReason { get; set; } /// /// 校验是否一致:T-一致、F-不一致 /// [XmlElement("passed")] public string Passed { get; set; } } }