using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiCertifyQueryinfoResponse. /// public class OapiCertifyQueryinfoResponse : DingTalkResponse { /// /// dingOpenErrcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// result /// [XmlElement("result")] public YunQi2018CertifyVODomain Result { get; set; } /// /// YunQi2018CertifyVODomain Data Structure. /// [Serializable] public class YunQi2018CertifyVODomain : TopObject { /// /// 实名时的脸图 /// [XmlElement("certify_face_image")] public string CertifyFaceImage { get; set; } /// /// 是否已实名 /// [XmlElement("has_certify")] public bool HasCertify { get; set; } /// /// 是否需要补录脸 /// [XmlElement("need_enter_face")] public bool NeedEnterFace { get; set; } } } }