using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiMicroappUpdateResponse. /// public class OapiMicroappUpdateResponse : DingTalkResponse { /// /// 微应用实例化id,企业只能删除自建微应用 /// [XmlElement("agentid")] public long Agentid { get; set; } /// /// 返回码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 对返回码的文本描述内容 /// [XmlElement("errmsg")] public string Errmsg { get; set; } } }