using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayInsSceneApplicationGroupApplyModel Data Structure. /// [Serializable] public class AlipayInsSceneApplicationGroupApplyModel : AopObject { /// /// 收件人 /// [XmlElement("addressee")] public InsAddressee Addressee { get; set; } /// /// 投保人 /// [XmlElement("applicant")] public InsPerson Applicant { get; set; } /// /// 投保申请信息列表 /// [XmlArray("applications")] [XmlArrayItem("ins_application")] public List Applications { get; set; } /// /// 保费支付账单流水的标题 /// [XmlElement("bill_title")] public string BillTitle { get; set; } /// /// 权益,可选不唯一,优惠使用,优惠决策时产生。 /// [XmlArray("coupons")] [XmlArrayItem("ins_coupon")] public List Coupons { get; set; } /// /// 优惠单号,可选不唯一,优惠使用,优惠决策时产生。 /// [XmlElement("discount_id")] public string DiscountId { get; set; } /// /// 商户生成的外部投保业务号,必须保证唯一 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 产品编码;由蚂蚁保险平台分配,商户通过该产品编码投保特定的保险产品 /// [XmlElement("prod_code")] public string ProdCode { get; set; } /// /// 报价单号,可选不唯一,用于指定投保订单对应的报价单,报价时产生。 /// [XmlElement("quote_biz_id")] public string QuoteBizId { get; set; } /// /// 渠道来源 /// [XmlElement("source")] public string Source { get; set; } } }