38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// KoubeiAdvertCommissionSpecialadvcontentModifyModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class KoubeiAdvertCommissionSpecialadvcontentModifyModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 广告ID
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("adv_id")]
|
|||
|
|
public string AdvId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 渠道ID(如果修改的是广告的默认主推广的内容,则不传渠道ID;如果修改的是广告的指定投放渠道的内容,则传指定渠道的ID)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("channel_id")]
|
|||
|
|
public string ChannelId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建或者删除广告内容的请求参数List
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("content_list")]
|
|||
|
|
|
|||
|
|
public List<KbAdvertSpecialAdvContentRequest> ContentList { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 特殊广告内容的修改枚举类型: create:表示创建特殊广告内容 delete:表示删除特殊广告内容
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("modify_type")]
|
|||
|
|
public string ModifyType { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|