using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KbAdvertChannelResponse Data Structure.
///
[Serializable]
public class KbAdvertChannelResponse : AopObject
{
///
/// 渠道ID
///
[JsonProperty("channel_id")]
public string ChannelId { get; set; }
///
/// 备注
///
[JsonProperty("memo")]
public string Memo { get; set; }
///
/// 渠道名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 渠道状态 EFFECTIVE:有效 INVALID:无效
///
[JsonProperty("status")]
public string Status { get; set; }
///
/// OFFLINE:线下推广
///
[JsonProperty("type")]
public string Type { get; set; }
}
}