using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// AliyunUnimktTaskChargeLaunchResponse. /// public class AliyunUnimktTaskChargeLaunchResponse : TopResponse { /// /// 错误消息 /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// 任务结果 /// [XmlElement("result")] public string Result { get; set; } /// /// 错误码 /// [XmlElement("task_error_code")] public long TaskErrorCode { get; set; } /// /// 执行结果 /// [XmlElement("task_success")] public bool TaskSuccess { get; set; } } }