using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserCertDocVehicleLicense Data Structure. /// [Serializable] public class AlipayUserCertDocVehicleLicense : AopObject { /// /// base64编码后的主页照片 /// [JsonProperty("encoded_img_main")] public string EncodedImgMain { get; set; } /// /// base64编码后的副页照片 /// [JsonProperty("encoded_img_vice")] public string EncodedImgVice { get; set; } /// /// 发动机号码 /// [JsonProperty("engine_no")] public string EngineNo { get; set; } /// /// 发证日期 /// [JsonProperty("issue_date")] public string IssueDate { get; set; } /// /// 品牌型号 /// [JsonProperty("model")] public string Model { get; set; } /// /// 所有人 /// [JsonProperty("owner")] public string Owner { get; set; } /// /// 号牌号码 /// [JsonProperty("plate_no")] public string PlateNo { get; set; } /// /// 注册日期 /// [JsonProperty("register_date")] public string RegisterDate { get; set; } /// /// 车辆识别代号 /// [JsonProperty("vin")] public string Vin { get; set; } } }