Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PromoItemInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

48 lines
1.0 KiB
C#
Raw 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// PromoItemInfo Data Structure.
/// </summary>
[Serializable]
public class PromoItemInfo : AopObject
{
/// <summary>
/// 商品购买限制
/// </summary>
[JsonProperty("constraint_info")]
public ConstraintInfo ConstraintInfo { get; set; }
/// <summary>
/// 商品ID用于领取时使用
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// 商品售卖结束时间
/// </summary>
[JsonProperty("sale_end_time")]
public string SaleEndTime { get; set; }
/// <summary>
/// 商品售卖的开始时间
/// </summary>
[JsonProperty("sale_start_time")]
public string SaleStartTime { get; set; }
/// <summary>
/// 剩余库存
/// </summary>
[JsonProperty("total_inventory")]
public string TotalInventory { get; set; }
/// <summary>
/// 券信息
/// </summary>
[JsonProperty("voucher")]
public Voucher Voucher { get; set; }
}
}