using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayInsSceneCouponSendResponse.
///
public class AlipayInsSceneCouponSendResponse : AopResponse
{
///
/// 发奖凭证
///
[JsonProperty("certificate")]
public InsCertificate Certificate { get; set; }
///
/// 活动ID
///
[JsonProperty("compaign_id")]
public string CompaignId { get; set; }
///
/// 发奖流水ID
///
[JsonProperty("flow_id")]
public string FlowId { get; set; }
///
/// 保险产品
///
[JsonProperty("product")]
public InsProduct Product { get; set; }
}
}