using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayInsDataDsbEstimateApplyModel Data Structure.
///
[Serializable]
public class AlipayInsDataDsbEstimateApplyModel : AopObject
{
///
/// 事发地区编码,取值参考提供的统一编码标准文档
///
[XmlElement("accident_area_id")]
public string AccidentAreaId { get; set; }
///
/// 车辆属性,json格式
///
[XmlElement("car_properties")]
public string CarProperties { get; set; }
///
/// 案件属性,json字符串格式,目前key值有is_night_case(是否夜间案件)、is_human_hurt(是否有人伤)、is_only_outlook_damage(是否纯外观损伤)等
///
[XmlElement("case_properties")]
public string CaseProperties { get; set; }
///
/// 车险商业险保单号
///
[XmlElement("commercial_policy_no")]
public string CommercialPolicyNo { get; set; }
///
/// 交强险保单号
///
[XmlElement("compulsory_policy_no")]
public string CompulsoryPolicyNo { get; set; }
///
/// 发动机号
///
[XmlElement("engine_no")]
public string EngineNo { get; set; }
///
/// 保险公司定损单号,唯一标识一个定损单的id
///
[XmlElement("estimate_no")]
public string EstimateNo { get; set; }
///
/// 定损请求uuid,唯一标识一次定损请求,用于做幂等控制
///
[XmlElement("estimate_request_uuid")]
public string EstimateRequestUuid { get; set; }
///
/// 车架号
///
[XmlElement("frame_no")]
public string FrameNo { get; set; }
///
/// 修理厂类型,枚举如下 4S-4S店 GENERAL-综合修理厂
///
[XmlElement("garage_type")]
public string GarageType { get; set; }
///
/// 车损图片信息列表
///
[XmlArray("image_list")]
[XmlArrayItem("alipay_ins_data_dsb_request_image_info")]
public List ImageList { get; set; }
///
/// 车牌号
///
[XmlElement("license_no")]
public string LicenseNo { get; set; }
///
/// 车型厂牌,理赔车型
///
[XmlElement("model_brand")]
public string ModelBrand { get; set; }
///
/// 新车购置价,单位为元。
///
[XmlElement("new_car_price")]
public string NewCarPrice { get; set; }
///
/// 维修企业属性,json字符串格式,目前key值有:type(企业类型/等级)、name(企业名称)、address(地址)、code(维修企业编码)等
///
[XmlElement("repair_corp_properties")]
public string RepairCorpProperties { get; set; }
///
/// 报案号
///
[XmlElement("report_no")]
public string ReportNo { get; set; }
///
/// 请求发生时的时间戳
///
[XmlElement("request_timestamp")]
public string RequestTimestamp { get; set; }
///
/// 查勘号
///
[XmlElement("survey_no")]
public string SurveyNo { get; set; }
}
}