using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiFileUploadTransactionResponse. /// public class OapiFileUploadTransactionResponse : DingTalkResponse { /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 文件存储id /// [XmlElement("media_id")] public string MediaId { get; set; } /// /// upload_id /// [XmlElement("upload_id")] public string UploadId { get; set; } } }