NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCdpAdvertise...

25 lines
678 B
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>
/// AlipayMarketingCdpAdvertiseOperateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCdpAdvertiseOperateModel : AopObject
{
/// <summary>
/// 广告ID唯一标识一条广告
/// </summary>
[XmlElement("ad_id")]
public string AdId { get; set; }
/// <summary>
/// 操作类型目前包括上线和下线分别传入online(ONLINE)和offline(OFFLINE)
/// </summary>
[XmlElement("operate_type")]
public string OperateType { get; set; }
}
}