using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiMediaUploadResponse.
///
public class OapiMediaUploadResponse : DingTalkResponse
{
///
/// 媒体文件上传时间戳
///
[XmlElement("created_at")]
public long CreatedAt { get; set; }
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 媒体文件上传后获取的唯一标识
///
[XmlElement("media_id")]
public string MediaId { get; set; }
///
/// 媒体文件类型,分别有图片(image)、语音(voice)、普通文件(file)
///
[XmlElement("type")]
public string Type { get; set; }
}
}