using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiImpaasGroupGetbydeptidResponse. /// public class OapiImpaasGroupGetbydeptidResponse : DingTalkResponse { /// /// dingOpenErrcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// result /// [XmlElement("result")] public BaseGroupInfoDomain Result { get; set; } /// /// success /// [XmlElement("success")] public bool Success { get; set; } /// /// BaseGroupInfoDomain Data Structure. /// [Serializable] public class BaseGroupInfoDomain : TopObject { /// /// conversation_id /// [XmlElement("conversation_id")] public string ConversationId { get; set; } /// /// icon /// [XmlElement("icon")] public string Icon { get; set; } /// /// open_conversation_id /// [XmlElement("open_conversation_id")] public string OpenConversationId { get; set; } /// /// owner /// [XmlElement("owner")] public long Owner { get; set; } /// /// tag /// [XmlElement("tag")] public long Tag { get; set; } /// /// title /// [XmlElement("title")] public string Title { get; set; } } } }