36 lines
789 B
C#
36 lines
789 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// KbAdvertAdvResponse Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KbAdvertAdvResponse : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 推广ID
|
|
/// </summary>
|
|
[JsonProperty("adv_id")]
|
|
public string AdvId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 指定推广活动的名称
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单张券推广 只有type=single_voucher才会有值
|
|
/// </summary>
|
|
[JsonProperty("single_voucher")]
|
|
public KbAdvertAdvSingleVoucherResponse SingleVoucher { get; set; }
|
|
|
|
/// <summary>
|
|
/// 推广类型
|
|
/// </summary>
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
}
|
|
} |