using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AdMaterialResultDTO Data Structure. /// [Serializable] public class AdMaterialResultDTO : AopObject { /// /// 物料宽度 /// [XmlElement("height")] public long Height { get; set; } /// /// 物料模板位置编号,编号从0开始 /// [XmlElement("index")] public long Index { get; set; } /// /// 物料类型,IMG:图片;VIDEO:视频;H5:H5 /// [XmlElement("material_type")] public string MaterialType { get; set; } /// /// 物料文件签名,天猫业务签名使用MD5算法,使用base64编码,用于物料转储校验 /// [XmlElement("mt_signature")] public string MtSignature { get; set; } /// /// 物料播放时长,单位:毫秒 /// [XmlElement("play_time")] public long PlayTime { get; set; } /// /// 物料存储URL地址 /// [XmlElement("url")] public string Url { get; set; } /// /// 物料宽度 /// [XmlElement("width")] public long Width { get; set; } } }