using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayInsSceneCouponSendResponse. /// public class AlipayInsSceneCouponSendResponse : AopResponse { /// /// 发奖凭证 /// [XmlElement("certificate")] public InsCertificate Certificate { get; set; } /// /// 活动ID /// [XmlElement("compaign_id")] public string CompaignId { get; set; } /// /// 发奖流水ID /// [XmlElement("flow_id")] public string FlowId { get; set; } /// /// 保险产品 /// [XmlElement("product")] public InsProduct Product { get; set; } } }