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