using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseContentlibStandardvideoSendModel Data Structure. /// [Serializable] public class AlipaySocialBaseContentlibStandardvideoSendModel : AopObject { /// /// action_type为此次请求类型,值为枚举,有三种,publish(发布),depublish(撤回),heartbeat(心跳),具体对接请联系负责人,必填 /// [XmlElement("action_type")] public string ActionType { get; set; } /// /// extInfo为扩展信息,json格式 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// public_id为来源文章需要接入的内容号,当为多号接入时,必填 /// [XmlElement("public_id")] public string PublicId { get; set; } /// /// source_author是来源内容的作者,当action_type为publish时,非必填 /// [XmlElement("source_author")] public string SourceAuthor { get; set; } /// /// source_keywords为来源内容的关键字,字符串类型,多个关键字用英文逗号隔开,如示例值所示。非必填 /// [XmlElement("source_category")] public string SourceCategory { get; set; } /// /// source_cover值为图片链接,用于主页的封面图显示,图片尺寸900*500。无封面图情况需产品确认。当action_type为publish的时候,必填 /// [XmlElement("source_cover")] public string SourceCover { get; set; } /// /// source_id是来源方能唯一确定一份内容的id,当action_type为publish及depublish时,必填 /// [XmlElement("source_id")] public string SourceId { get; set; } /// /// 来源文章的发布时间,当action_type为publish的时候,必填 /// [XmlElement("source_publish_date")] public string SourcePublishDate { get; set; } /// /// source_summary为来源内容的摘要,非必填 /// [XmlElement("source_summary")] public string SourceSummary { get; set; } /// /// source_title是来源方内容标题,当action_type是publish时,必填 /// [XmlElement("source_title")] public string SourceTitle { get; set; } /// /// 视频Id,当action_type为publish的时候,必填 /// [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; } /// /// 视频url,当action_type为publish的时候,必填 /// [XmlElement("video_url")] public string VideoUrl { get; set; } } }