using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiFaceauthGetResponse. /// public class OapiFaceauthGetResponse : DingTalkResponse { /// /// 错误码 0表示验证成功 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误码描述 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 实名认证的结果 /// [XmlElement("result")] public ResultDomain Result { get; set; } /// /// ResultDomain Data Structure. /// [Serializable] public class ResultDomain : TopObject { /// /// 身份证号码,只有在用户输入的情况下才返回 /// [XmlElement("idcard_no")] public string IdcardNo { get; set; } /// /// 用户输入的姓名 /// [XmlElement("name")] public string Name { get; set; } } } }