using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsProdCoverage Data Structure. /// [Serializable] public class InsProdCoverage : AopObject { /// /// 险种描述 /// [JsonProperty("coverage_desc")] public string CoverageDesc { get; set; } /// /// 险种名称 /// [JsonProperty("coverage_name")] public string CoverageName { get; set; } /// /// 险种编号 /// [JsonProperty("coverage_no")] public string CoverageNo { get; set; } /// /// 是否定期险种 /// [JsonProperty("is_fixed_period")] public bool IsFixedPeriod { get; set; } /// /// 险种责任列表 /// [JsonProperty("liabilities")] public List Liabilities { get; set; } /// /// 可用的保障期限列表;约定“1D”代表一天,“1M”代表一个月,"1Y"代表一年 /// [JsonProperty("periods")] public List Periods { get; set; } /// /// 保额 /// [JsonProperty("sum_insured")] public InsSumInsured SumInsured { get; set; } } }