using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsCertificate Data Structure. /// [Serializable] public class InsCertificate : AopObject { /// /// 发奖凭证ID /// [JsonProperty("certificate_id")] public string CertificateId { get; set; } /// /// 发奖凭证类型;GIFT_INSURANCE:赠险 /// [JsonProperty("certificate_type")] public string CertificateType { get; set; } /// /// 发奖凭证值 /// [JsonProperty("certificate_value")] public string CertificateValue { get; set; } } }