using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsSceneClaimApplyModel Data Structure. /// [Serializable] public class AlipayInsSceneClaimApplyModel : AopObject { /// /// 出险地点 /// [JsonProperty("accident_address")] public string AccidentAddress { get; set; } /// /// 出险描述 /// [JsonProperty("accident_desc")] public string AccidentDesc { get; set; } /// /// 出险时间 /// [JsonProperty("accident_time")] public string AccidentTime { get; set; } /// /// 受益人 /// [JsonProperty("beneficiary")] public InsPerson Beneficiary { get; set; } /// /// 支付账单流水的标题 /// [JsonProperty("bill_title")] public string BillTitle { get; set; } /// /// 理赔因子;标准json格式 /// [JsonProperty("biz_data")] public string BizData { get; set; } /// /// 索赔金额(如果需要外部指定则必填),单位分 /// [JsonProperty("claim_fee")] public long ClaimFee { get; set; } /// /// 商户生成的外部投保业务单号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 商户生成的理赔请求单号【幂等字段】 /// [JsonProperty("out_request_no")] public string OutRequestNo { get; set; } /// /// 产品编码;由蚂蚁保险平台分配,商户通过该产品编码投保特定的保险产品(如饿了么外卖延误险) /// [JsonProperty("prod_code")] public string ProdCode { get; set; } /// /// 报案人 /// [JsonProperty("reporter")] public InsPerson Reporter { get; set; } } }