using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PromoItemInfo Data Structure.
///
[Serializable]
public class PromoItemInfo : AopObject
{
///
/// 商品购买限制
///
[JsonProperty("constraint_info")]
public ConstraintInfo ConstraintInfo { get; set; }
///
/// 商品ID,用于领取时使用
///
[JsonProperty("id")]
public string Id { get; set; }
///
/// 商品售卖结束时间
///
[JsonProperty("sale_end_time")]
public string SaleEndTime { get; set; }
///
/// 商品售卖的开始时间
///
[JsonProperty("sale_start_time")]
public string SaleStartTime { get; set; }
///
/// 剩余库存
///
[JsonProperty("total_inventory")]
public string TotalInventory { get; set; }
///
/// 券信息
///
[JsonProperty("voucher")]
public Voucher Voucher { get; set; }
}
}