using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// VoucherLiteInfo Data Structure.
///
[Serializable]
public class VoucherLiteInfo : AopObject
{
///
/// 发券时间,格式为:yyyy-MM-dd HH:mm:ss
///
[JsonProperty("send_time")]
public string SendTime { get; set; }
///
/// 券状态,可枚举,分别为“可用”(ENABLED)和“不可用”(DISABLED)
///
[JsonProperty("status")]
public string Status { get; set; }
///
/// 券模板ID
///
[JsonProperty("template_id")]
public string TemplateId { get; set; }
///
/// 券ID
///
[JsonProperty("voucher_id")]
public string VoucherId { get; set; }
}
}