using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsSceneApplicationApplyModel Data Structure. /// [Serializable] public class AlipayInsSceneApplicationApplyModel : AopObject { /// /// 投保人 /// [JsonProperty("applicant")] public InsPerson Applicant { get; set; } /// /// 支付账单流水的标题 /// [JsonProperty("bill_title")] public string BillTitle { get; set; } /// /// 投保参数 ,每个产品特有的投保参数,如航空险的航班信息;标准json格式 /// [JsonProperty("biz_data")] public string BizData { get; set; } /// /// 生效时间 /// [JsonProperty("effect_start_time")] public string EffectStartTime { get; set; } /// /// 被保险人 /// [JsonProperty("insureds")] public List Insureds { get; set; } /// /// 商户生成的外部投保业务号,必须保证唯一 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 险种保障期限,数字+"Y/M/D"结尾,非固定期限险种或多固定期限险种必填 /// [JsonProperty("period")] public string Period { get; set; } /// /// 实际保费,询价接口获取的保费通过投保接口传递进来。投保接口会对传入的保费进行验证。传入的保费和核价的值不一样投保失败 /// [JsonProperty("premium")] public long Premium { get; set; } /// /// 产品编码;由蚂蚁保险平台分配,商户通过该产品编码投保特定的保险产品(如饿了么外卖延误险) /// [JsonProperty("prod_code")] public string ProdCode { get; set; } /// /// 渠道来源 /// [JsonProperty("source")] public string Source { get; set; } /// /// 保额值,保额类型为枚举的时候是一个枚举值,当为金额类型时单位为分 /// [JsonProperty("sum_insured")] public long SumInsured { get; set; } } }