using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiMicroappCustomCreateResponse. /// public class OapiMicroappCustomCreateResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误描述文案 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 定制应用 /// [XmlElement("result")] public CustomAppCreateResponseVoDomain Result { get; set; } /// /// CustomAppCreateResponseVoDomain Data Structure. /// [Serializable] public class CustomAppCreateResponseVoDomain : TopObject { /// /// 定制应用id /// [XmlElement("agent_id")] public long AgentId { get; set; } /// /// 定制应用key /// [XmlElement("custom_key")] public string CustomKey { get; set; } /// /// 定制应用secret /// [XmlElement("custom_secret")] public string CustomSecret { get; set; } } } }