using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsPolicy Data Structure. /// [Serializable] public class InsPolicy : AopObject { /// /// 保单邮寄地址 /// [JsonProperty("addressee")] public InsAddressee Addressee { get; set; } /// /// 投保人 /// [JsonProperty("applicant")] public InsPerson Applicant { get; set; } /// /// 投保参数;标准json 格式 /// [JsonProperty("biz_data")] public string BizData { get; set; } /// /// 赔案 /// [JsonProperty("claims")] public List Claims { get; set; } /// /// 险种列表 /// [JsonProperty("coverages")] public List Coverages { get; set; } /// /// 保单失效时间 /// [JsonProperty("effect_end_time")] public string EffectEndTime { get; set; } /// /// 保单生效时间 /// [JsonProperty("effect_start_time")] public string EffectStartTime { get; set; } /// /// 标的列表 /// [JsonProperty("ins_objects")] public List InsObjects { get; set; } /// /// 被保险人 /// [JsonProperty("insureds")] public List Insureds { get; set; } /// /// 机构名称 /// [JsonProperty("merchant_name")] public string MerchantName { get; set; } /// /// 保单凭证号;蚂蚁保险平台生成的保单凭证号,用户可以通过此单号去保险公司查询保单信息. /// [JsonProperty("policy_no")] public string PolicyNo { get; set; } /// /// 保单状态.INEFFECTIVE:未生效、GUARANTEE:保障中、EXPIRED:已失效、SURRENDER:已退保 /// [JsonProperty("policy_status")] public string PolicyStatus { get; set; } /// /// 保费 ;单位分 /// [JsonProperty("premium")] public long Premium { get; set; } /// /// 产品名称 /// [JsonProperty("prod_name")] public string ProdName { get; set; } /// /// 保额 ;单位分 /// [JsonProperty("sum_insured")] public long SumInsured { get; set; } /// /// 退保金额 /// [JsonProperty("surrender_fee")] public long SurrenderFee { get; set; } /// /// 退保时间 /// [JsonProperty("surrender_time")] public string SurrenderTime { get; set; } } }