using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsClaimReport Data Structure. /// [Serializable] public class InsClaimReport : 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("attachments")] public List Attachments { get; set; } /// /// 业务字段 /// [JsonProperty("biz_data")] public string BizData { get; set; } /// /// 报案号 /// [JsonProperty("claim_report_no")] public string ClaimReportNo { get; set; } /// /// 赔案信息 /// [JsonProperty("claims")] public List Claims { get; set; } /// /// 案件进度列表 /// [JsonProperty("progress")] public List Progress { get; set; } /// /// 当status 值为不予受理:REJECTED时候返回 /// [JsonProperty("report_reject_reason")] public string ReportRejectReason { get; set; } /// /// 报案人 /// [JsonProperty("reporter")] public InsPerson Reporter { get; set; } /// /// 案件状态 /// [JsonProperty("status")] public string Status { get; set; } } }