using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiSmartdeviceDevicememberListResponse. /// public class OapiSmartdeviceDevicememberListResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误提示 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 查询结果 /// [XmlElement("result")] public PagedListDomain Result { get; set; } /// /// PagedListDomain Data Structure. /// [Serializable] public class PagedListDomain : TopObject { /// /// 当 has_more 为true时,下次查询需要传入的游标 /// [XmlElement("cursor")] public long Cursor { get; set; } /// /// 是否还有数据 /// [XmlElement("has_more")] public bool HasMore { get; set; } /// /// 当前页所对应的userIds /// [XmlArray("items")] [XmlArrayItem("string")] public List Items { get; set; } } } }