NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingAdvertisingM...

49 lines
1.7 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>
/// KoubeiMarketingAdvertisingModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingAdvertisingModifyModel : AopObject
{
/// <summary>
/// 行为地址。用户点击广告后跳转URL地址, 协议必须为HTTPS。广告类型为PIC时需要设置该值。
/// </summary>
[XmlElement("action_url")]
public string ActionUrl { get; set; }
/// <summary>
/// 广告ID,唯一标识一条广告
/// </summary>
[XmlElement("ad_id")]
public string AdId { get; set; }
/// <summary>
/// 广告内容目前只支持图片类型则传入图片ID标识如何获取图片ID参考图片上传接口alipay.offline.material.image.upload图片尺寸为1242px290px。
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
/// <summary>
/// 投放广告结束时间使用标准时间格式yyyy-MM-dd HH:mm:ss如果不设置默认投放时间一个月
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 目前传入广告类型为图片,该字段可以先忽略。
/// </summary>
[XmlElement("height")]
public string Height { get; set; }
/// <summary>
/// 投放广告开始时间使用标准时间格式yyyy-MM-dd HH:mm:ss如果不设置默认投放时间一个月
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
}
}