using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsDataAutodamageEstimateConfirmModel Data Structure.
///
[Serializable]
public class AlipayInsDataAutodamageEstimateConfirmModel : AopObject
{
///
/// 业务类型,2表示机构核损,3表示机构定损
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 车险商业险保单号
///
[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; }
///
/// 核损详情对象列表
///
[JsonProperty("estimate_detail_list")]
public List EstimateDetailList { get; set; }
///
/// 保险公司定损单号,唯一标识一个定损单的id
///
[JsonProperty("estimate_no")]
public string EstimateNo { get; set; }
///
/// 车架号
///
[JsonProperty("frame_no")]
public string FrameNo { get; set; }
///
/// 车牌号
///
[JsonProperty("license_no")]
public string LicenseNo { get; set; }
///
/// 车型厂牌
///
[JsonProperty("model_brand")]
public string ModelBrand { get; set; }
///
/// 维修企业名称
///
[JsonProperty("repair_corp_name")]
public string RepairCorpName { get; set; }
///
/// 维修企业类型
///
[JsonProperty("repair_corp_type")]
public string RepairCorpType { get; set; }
///
/// 车险报案号
///
[JsonProperty("report_no")]
public string ReportNo { get; set; }
///
/// 查勘号
///
[JsonProperty("survey_no")]
public string SurveyNo { get; set; }
///
/// 车损总金额,单位:元
///
[JsonProperty("total_damage_amount")]
public string TotalDamageAmount { get; set; }
///
/// 残值扣除总金额,单位:元
///
[JsonProperty("total_remain_value")]
public string TotalRemainValue { get; set; }
}
}