using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// CdpDisplayContent Data Structure.
///
[Serializable]
public class CdpDisplayContent : AopObject
{
///
/// 点击投放内容跳转地址
///
[XmlElement("action_url")]
public string ActionUrl { get; set; }
///
/// 投放中的扩展字段
///
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
///
/// 投放生效结束时间
///
[XmlElement("gmt_end")]
public string GmtEnd { get; set; }
///
/// 投放生效开始时间
///
[XmlElement("gmt_start")]
public string GmtStart { get; set; }
///
/// 投放图片地址
///
[XmlElement("image_url")]
public string ImageUrl { get; set; }
///
/// 投放文本内容
///
[XmlElement("text")]
public string Text { get; set; }
///
/// 投放类型字段(当前只有红包),红包redPacket、提示tips、全景ar、广告ad
///
[XmlElement("type")]
public string Type { get; set; }
}
}