using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiServiceGetAgentResponse. /// public class OapiServiceGetAgentResponse : DingTalkResponse { /// /// agentid /// [XmlElement("agentid")] public long Agentid { get; set; } /// /// close /// [XmlElement("close")] public long Close { get; set; } /// /// description /// [XmlElement("description")] public string Description { get; set; } /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// logo_url /// [XmlElement("logo_url")] public string LogoUrl { get; set; } /// /// name /// [XmlElement("name")] public string Name { get; set; } } }