using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMsaasMediarecogMmtcaftscvPicvideoQueryModel Data Structure. /// [Serializable] public class AlipayMsaasMediarecogMmtcaftscvPicvideoQueryModel : AopObject { /// /// 请求Id /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 交易Id /// [XmlElement("transaction_id")] public string TransactionId { get; set; } /// /// 捞取类型: images, videos, video_info /// [XmlElement("type")] public string Type { get; set; } /// /// 只对videos类型有效, 例: {"layers": "0", "segments": "0"} {"layers": "1,2,3,4,5", "segments": "1,2"} 注:layers 为 "0"为全部层,segments 为 "0"为全部 段 /// [XmlElement("video_detail")] public string VideoDetail { get; set; } } }