using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RecommendInfo Data Structure. /// [Serializable] public class RecommendInfo : AopObject { /// /// 支付能力聚合页地址,承载支付能力提升的页面地址。 /// [XmlElement("jump_url")] public string JumpUrl { get; set; } /// /// 推荐运营文案,用于推荐类型为contentPage的场景。 /// [XmlElement("recommend_content")] public string RecommendContent { get; set; } /// /// 运营投放图片,用于推荐类型为imgPage的场景 /// [XmlElement("recommend_img")] public string RecommendImg { get; set; } /// /// 支付能力运营推荐类型,包括图片链接及文字链接两种,取值分别为:imgPage、contentPage /// [XmlElement("recommend_type")] public string RecommendType { get; set; } } }