NewGaoKaoApi/PaymentSDK/AliPay/Domain/CdpDisplayContent.cs

55 lines
1.4 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>
/// CdpDisplayContent Data Structure.
/// </summary>
[Serializable]
public class CdpDisplayContent : AopObject
{
/// <summary>
/// 点击投放内容跳转地址
/// </summary>
[XmlElement("action_url")]
public string ActionUrl { get; set; }
/// <summary>
/// 投放中的扩展字段
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 投放生效结束时间
/// </summary>
[XmlElement("gmt_end")]
public string GmtEnd { get; set; }
/// <summary>
/// 投放生效开始时间
/// </summary>
[XmlElement("gmt_start")]
public string GmtStart { get; set; }
/// <summary>
/// 投放图片地址
/// </summary>
[XmlElement("image_url")]
public string ImageUrl { get; set; }
/// <summary>
/// 投放文本内容
/// </summary>
[XmlElement("text")]
public string Text { get; set; }
/// <summary>
/// 投放类型字段当前只有红包红包redPacket、提示tips、全景ar、广告ad
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}