using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiMessageCorpconversationGetsendprogressResponse. /// public class OapiMessageCorpconversationGetsendprogressResponse : DingTalkResponse { /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// result /// [XmlElement("progress")] public AsyncSendProgressDomain Progress { get; set; } /// /// AsyncSendProgressDomain Data Structure. /// [Serializable] public class AsyncSendProgressDomain : TopObject { /// /// 取值 0-100,表示处理的百分比 /// [XmlElement("progress_in_percent")] public long ProgressInPercent { get; set; } /// /// 任务执行状态,0=未开始,1=处理中,2=处理完毕 /// [XmlElement("status")] public long Status { get; set; } } } }