using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayInsDataAutodamageEstimateApplyModel Data Structure. /// [Serializable] public class AlipayInsDataAutodamageEstimateApplyModel : AopObject { /// /// 车险商业险保单号 /// [JsonProperty("commercial_policy_no")] public string CommercialPolicyNo { get; set; } /// /// 交强险保单号 /// [JsonProperty("compulsory_policy_no")] public string CompulsoryPolicyNo { get; set; } /// /// 汽车发动机号 /// [JsonProperty("engine_no")] public string EngineNo { get; set; } /// /// 保险公司定损单号,唯一标识一个定损单的id /// [JsonProperty("estimate_no")] public string EstimateNo { get; set; } /// /// 定损请求uuid,唯一标识一次定损请求,用于做幂等控制 /// [JsonProperty("estimate_request_uuid")] public string EstimateRequestUuid { get; set; } /// /// 车架号 /// [JsonProperty("frame_no")] public string FrameNo { get; set; } /// /// 车损图片信息列表 /// [JsonProperty("image_list")] public List ImageList { get; set; } /// /// 车牌号 /// [JsonProperty("license_no")] public string LicenseNo { get; set; } /// /// 车型厂牌 /// [JsonProperty("model_brand")] public string ModelBrand { get; set; } /// /// 车险报案号 /// [JsonProperty("report_no")] public string ReportNo { get; set; } /// /// 请求发生时的时间戳 /// [JsonProperty("request_timestamp")] public long RequestTimestamp { get; set; } /// /// 查勘号 /// [JsonProperty("survey_no")] public string SurveyNo { get; set; } } }