NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignReta...

31 lines
1.0 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>
/// KoubeiMarketingCampaignRetailDmSetModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignRetailDmSetModel : AopObject
{
/// <summary>
/// 下架时间,仅上架操作时使用,必须晚于当前时间
/// </summary>
[XmlElement("campaign_end_time")]
public string CampaignEndTime { get; set; }
/// <summary>
/// 内容ID调用koubei.marketing.campaign.retail.dm.create创建内容时返回的内容ID
/// </summary>
[XmlElement("content_id")]
public string ContentId { get; set; }
/// <summary>
/// 上下架操作类型上架ONLINE下架OFFLINE注意请先调用创建内容接口再进行上架操作下架内容不得再上架。
/// </summary>
[XmlElement("operate_type")]
public string OperateType { get; set; }
}
}