using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KbAdvertAddChannelRequest Data Structure.
///
[Serializable]
public class KbAdvertAddChannelRequest : AopObject
{
///
/// 描述信息(页面上不展现)
///
[JsonProperty("memo")]
public string Memo { get; set; }
///
/// 渠道名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 类型可以通过koubei.advert.data.conf.query查询 OFFLINE:线下推广
///
[JsonProperty("type")]
public string Type { get; set; }
}
}