using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiSmartdeviceMeetingroomParticipantListResponse. /// public class OapiSmartdeviceMeetingroomParticipantListResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误码信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果 /// [XmlElement("result")] public OpenPageResultDomain Result { get; set; } /// /// MemeberOpenInfoDomain Data Structure. /// [Serializable] public class MemeberOpenInfoDomain : TopObject { /// /// 参会人userid /// [XmlElement("userid")] public string Userid { get; set; } } /// /// OpenPageResultDomain Data Structure. /// [Serializable] public class OpenPageResultDomain : TopObject { /// /// 是否有下一页 /// [XmlElement("has_more")] public bool HasMore { get; set; } /// /// 游标 /// [XmlElement("next_cursor")] public string NextCursor { get; set; } /// /// 参会人列表 /// [XmlArray("participants")] [XmlArrayItem("memeber_open_info")] public List Participants { get; set; } } } }