NewGaoKaoApi/PaymentSDK/AliPay/Domain/RecommendInfo.cs

37 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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