using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InstanceInfo Data Structure.
///
[Serializable]
public class InstanceInfo : AopObject
{
///
/// 内容
///
[JsonProperty("content")]
public string Content { get; set; }
///
/// 扩展信息
///
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
///
/// 券失效时间
///
[JsonProperty("gmt_end")]
public string GmtEnd { get; set; }
///
/// 券开始生效时间
///
[JsonProperty("gmt_start")]
public string GmtStart { get; set; }
///
/// 券id
///
[JsonProperty("instance_id")]
public string InstanceId { get; set; }
///
/// 券名称
///
[JsonProperty("instance_name")]
public string InstanceName { get; set; }
///
/// 类型
///
[JsonProperty("type")]
public string Type { get; set; }
}
}