Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertCommissionSpecialadvcontentModifyModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

38 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}