NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiAdvertCommissionSpeci...

39 lines
1.3 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiAdvertCommissionSpecialadvcontentModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertCommissionSpecialadvcontentModifyModel : AopObject
{
/// <summary>
/// 广告ID
/// </summary>
[XmlElement("adv_id")]
public string AdvId { get; set; }
/// <summary>
/// 渠道ID如果修改的是广告的默认主推广的内容则不传渠道ID如果修改的是广告的指定投放渠道的内容则传指定渠道的ID
/// </summary>
[XmlElement("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 创建或者删除广告内容的请求参数List
/// </summary>
[XmlArray("content_list")]
[XmlArrayItem("kb_advert_special_adv_content_request")]
public List<KbAdvertSpecialAdvContentRequest> ContentList { get; set; }
/// <summary>
/// 特殊广告内容的修改枚举类型: create表示创建特殊广告内容 delete表示删除特殊广告内容
/// </summary>
[XmlElement("modify_type")]
public string ModifyType { get; set; }
}
}