using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiUserCountResponse. /// public class OapiUserCountResponse : DingTalkResponse { /// /// 错误码。0代表成功。 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息。 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 返回结果 /// [XmlElement("result")] public CountUserResponseDomain Result { get; set; } /// /// CountUserResponseDomain Data Structure. /// [Serializable] public class CountUserResponseDomain : TopObject { /// /// 员工数量 /// [XmlElement("count")] public long Count { get; set; } } } }