using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsSceneApplicationGroupApplyModel Data Structure.
///
[Serializable]
public class AlipayInsSceneApplicationGroupApplyModel : AopObject
{
///
/// 收件人
///
[JsonProperty("addressee")]
public InsAddressee Addressee { get; set; }
///
/// 投保人
///
[JsonProperty("applicant")]
public InsPerson Applicant { get; set; }
///
/// 投保申请信息列表
///
[JsonProperty("applications")]
public List Applications { get; set; }
///
/// 保费支付账单流水的标题
///
[JsonProperty("bill_title")]
public string BillTitle { get; set; }
///
/// 商户生成的外部投保业务号,必须保证唯一
///
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 产品编码;由蚂蚁保险平台分配,商户通过该产品编码投保特定的保险产品
///
[JsonProperty("prod_code")]
public string ProdCode { get; set; }
///
/// 渠道来源
///
[JsonProperty("source")]
public string Source { get; set; }
}
}