using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEduCircleTopiclistResponse. /// public class OapiEduCircleTopiclistResponse : DingTalkResponse { /// /// 1 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 系统自动生成 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 系统自动生成 /// [XmlArray("result")] [XmlArrayItem("open_circle_topic_response")] public List Result { get; set; } /// /// 系统自动生成 /// [XmlElement("success")] public bool Success { get; set; } /// /// OpenCircleTopicResponseDomain Data Structure. /// [Serializable] public class OpenCircleTopicResponseDomain : TopObject { /// /// 1 /// [XmlElement("album_media_id")] public string AlbumMediaId { get; set; } /// /// 1 /// [XmlElement("desc")] public string Desc { get; set; } /// /// 1 /// [XmlElement("init_topic")] public bool InitTopic { get; set; } /// /// 1 /// [XmlElement("name")] public string Name { get; set; } /// /// 1 /// [XmlElement("post_count")] public long PostCount { get; set; } /// /// 1 /// [XmlElement("topic_id")] public long TopicId { get; set; } } } }