using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEduClassconversationAsyncsendResponse. /// public class OapiEduClassconversationAsyncsendResponse : DingTalkResponse { /// /// result /// [XmlElement("result")] public DingOpenResultDomain Result { get; set; } /// /// TopSendConversationMsgResponseDomain Data Structure. /// [Serializable] public class TopSendConversationMsgResponseDomain : TopObject { /// /// 异步任务id /// [XmlElement("task_id")] public string TaskId { get; set; } } /// /// DingOpenResultDomain Data Structure. /// [Serializable] public class DingOpenResultDomain : TopObject { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 系统错误 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// response /// [XmlElement("response")] public TopSendConversationMsgResponseDomain Response { get; set; } /// /// 调用是否成功 /// [XmlElement("success")] public bool Success { get; set; } } } }