56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// DiscountDetail Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class DiscountDetail : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 优惠金额
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("discount_amount")]
|
|||
|
|
public string DiscountAmount { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 优惠描述,比如至多优惠XX元,满XX减XX
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("discount_desc")]
|
|||
|
|
|
|||
|
|
public List<string> DiscountDesc { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 优惠类型,商家优惠(M_DISCOUNT),平台优惠(RT_DISCOUNT)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("discount_type")]
|
|||
|
|
public string DiscountType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 优惠ID或活动ID
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("id")]
|
|||
|
|
public string Id { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 优惠是否命中, true代表命中了优惠;false代表未命中优惠
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("is_hit")]
|
|||
|
|
public string IsHit { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否是购买券, true代表是购买的券,false调表不是购买的券
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("is_purchased")]
|
|||
|
|
public string IsPurchased { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 优惠名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("name")]
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|