using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenPublicContentPublishModel Data Structure. /// [Serializable] public class AlipayOpenPublicContentPublishModel : AopObject { /// /// action_url 文章地址url,用于文章列表显示,用户点击后的跳转地址。 /// [XmlElement("action_url")] public string ActionUrl { get; set; } /// /// article_id 为调用方的文章id,用于生活号对输入的文章进行去重检测 /// [XmlElement("article_id")] public string ArticleId { get; set; } /// /// content 为写文章完整的正文文本内容 /// [XmlElement("content")] public string Content { get; set; } /// /// cover_img 用于内容在文章列表中展示时的配图 /// [XmlElement("cover_img")] public string CoverImg { get; set; } /// /// desc 用于描述文章简介 /// [XmlElement("desc")] public string Desc { get; set; } /// /// endTime 用于描述文章内容有效截止时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// source 用于描述调用接口的业务方 /// [XmlElement("source")] public string Source { get; set; } /// /// title 用于描述文章标题 /// [XmlElement("title")] public string Title { get; set; } } }