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