using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiMicroappListByUseridResponse. /// public class OapiMicroappListByUseridResponse : DingTalkResponse { /// /// appList /// [XmlArray("appList")] [XmlArrayItem("applist")] public List AppList { get; set; } /// /// 返回码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 对返回码的文本描述内容 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// ApplistDomain Data Structure. /// [Serializable] public class ApplistDomain : TopObject { /// /// 微应用实例化id /// [XmlElement("agentId")] public long AgentId { get; set; } /// /// 微应用描述 /// [XmlElement("appDesc")] public string AppDesc { get; set; } /// /// 微应用图标 /// [XmlElement("appIcon")] public string AppIcon { get; set; } /// /// 微应用状态,1表示启用,0表示停用 /// [XmlElement("appStatus")] public long AppStatus { get; set; } /// /// 微应用的移动端主页 /// [XmlElement("homepageLink")] public string HomepageLink { get; set; } /// /// 表示是否是自建微应用 /// [XmlElement("isSelf")] public bool IsSelf { get; set; } /// /// 微应用图标 /// [XmlElement("name")] public string Name { get; set; } /// /// 微应用的OA后台管理主页 /// [XmlElement("ompLink")] public string OmpLink { get; set; } /// /// 微应用的pc端主页 /// [XmlElement("pcHomepageLink")] public string PcHomepageLink { get; set; } } } }