Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayInsSceneCouponReceiveModel.cs

66 lines
1.6 KiB
C#
Raw Normal View History

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