using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEduHomeworkCommentTipsQueryResponse. /// public class OapiEduHomeworkCommentTipsQueryResponse : DingTalkResponse { /// /// 错误编码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果 /// [XmlArray("result")] [XmlArrayItem("open_hw_comment_tips_response")] public List Result { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// OpenHwCommentTipsResponseDomain Data Structure. /// [Serializable] public class OpenHwCommentTipsResponseDomain : TopObject { /// /// 属性字段 /// [XmlElement("attributes")] public string Attributes { get; set; } /// /// 音频 /// [XmlElement("audio")] public string Audio { get; set; } /// /// 内容 /// [XmlElement("content")] public string Content { get; set; } /// /// id /// [XmlElement("id")] public long Id { get; set; } /// /// 视频 /// [XmlElement("media")] public string Media { get; set; } /// /// 图片 /// [XmlElement("photo")] public string Photo { get; set; } /// /// 用户userid /// [XmlElement("userid")] public string Userid { get; set; } } } }