using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEduCourseReplayResponse. /// public class OapiEduCourseReplayResponse : DingTalkResponse { /// /// dingOpenErrcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// result /// [XmlElement("result")] public ReplayCourseResponseDomain Result { get; set; } /// /// success /// [XmlElement("success")] public bool Success { get; set; } /// /// ReplayCourseResponseDomain Data Structure. /// [Serializable] public class ReplayCourseResponseDomain : TopObject { /// /// 回放url列表 /// [XmlArray("replay_urls")] [XmlArrayItem("string")] public List ReplayUrls { get; set; } /// /// 是否可回放 /// [XmlElement("replayable")] public bool Replayable { get; set; } } } }