using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// VoucherTemplateLiteInfo Data Structure.
///
[Serializable]
public class VoucherTemplateLiteInfo : AopObject
{
///
/// 模板激活时间。草稿状态的模板该项为空
///
[JsonProperty("activate_time")]
public string ActivateTime { get; set; }
///
/// 模板创建时间。格式为:yyyy-MM-dd HH:mm:ss
///
[JsonProperty("create_time")]
public string CreateTime { get; set; }
///
/// 发放结束时间。格式为:yyyy-MM-dd HH:mm:ss
///
[JsonProperty("publish_end_time")]
public string PublishEndTime { get; set; }
///
/// 券模板发放开始时间。格式为:yyyy-MM-dd HH:mm:ss
///
[JsonProperty("publish_start_time")]
public string PublishStartTime { get; set; }
///
/// 模板状态,可枚举。分别为‘草稿’(I)、‘生效’(S)和‘过期’(E)
///
[JsonProperty("status")]
public string Status { get; set; }
///
/// 券模板ID
///
[JsonProperty("template_id")]
public string TemplateId { get; set; }
///
/// 券名称
///
[JsonProperty("voucher_name")]
public string VoucherName { get; set; }
}
}