using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseContentlibStandardvideoauditSendModel Data Structure. /// [Serializable] public class AlipaySocialBaseContentlibStandardvideoauditSendModel : AopObject { /// /// publish(审核通过), depublish(审核不通过) /// [XmlElement("action_type")] public string ActionType { get; set; } /// /// 扩展字段,传递非标准参数信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 驳回原因 /// [XmlElement("reason")] public string Reason { get; set; } /// /// 操作日期 /// [XmlElement("source_publish_date")] public string SourcePublishDate { get; set; } /// /// 视频Id /// [XmlElement("video_id")] public string VideoId { get; set; } /// /// 视频时长 /// [XmlElement("video_length")] public string VideoLength { get; set; } /// /// 视频来源 /// [XmlElement("video_publish_type")] public string VideoPublishType { get; set; } /// /// 视频的大小 /// [XmlElement("video_size")] public string VideoSize { get; set; } /// /// 视频的标签,以,隔开 /// [XmlElement("video_tags")] public string VideoTags { get; set; } /// /// video的url /// [XmlElement("video_url")] public string VideoUrl { get; set; } } }