using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiSmartbotMsgPushResponse. /// public class OapiSmartbotMsgPushResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 创建的异步发送任务id /// [XmlElement("task_id")] public string TaskId { get; set; } } }