using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsSceneCouponReceiveModel Data Structure. /// [Serializable] public class AlipayInsSceneCouponReceiveModel : AopObject { /// /// 投保人 /// [JsonProperty("applicant")] public InsPerson Applicant { get; set; } /// /// 保险发奖凭证 /// [JsonProperty("certificate")] public InsCertificate Certificate { get; set; } /// /// 被保险人 /// [JsonProperty("insured")] public InsPerson Insured { get; set; } /// /// 市场类型;TAOBAO:淘宝平台,ANT: 蚂蚁平台 /// [JsonProperty("market_type")] public string MarketType { get; set; } /// /// 商户生成的外部业务号,必须保证唯一,幂等控制 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 商户pid /// [JsonProperty("partner_id")] public string PartnerId { get; set; } /// /// 产品编码;由蚂蚁保险平台分配 /// [JsonProperty("prod_code")] public string ProdCode { get; set; } /// /// 产品版本号 /// [JsonProperty("prod_version")] public string ProdVersion { get; set; } /// /// 服务场景; propertyPaySuccess:蚂蚁物业支付成功页面 /// [JsonProperty("service_scenario")] public string ServiceScenario { get; set; } } }