using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiV2UserGetbymobileResponse. /// public class OapiV2UserGetbymobileResponse : DingTalkResponse { /// /// 错误码。0代表成功。 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息。 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 返回结果 /// [XmlElement("result")] public UserGetByMobileResponseDomain Result { get; set; } /// /// UserGetByMobileResponseDomain Data Structure. /// [Serializable] public class UserGetByMobileResponseDomain : TopObject { /// /// 专属帐号员工的userid列表(不含其他组织创建的专属帐号) /// [XmlArray("exclusive_account_userid_list")] [XmlArrayItem("string")] public List ExclusiveAccountUseridList { get; set; } /// /// 员工id /// [XmlElement("userid")] public string Userid { get; set; } } } }