using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserCertDocDrivingLicense Data Structure. /// [Serializable] public class AlipayUserCertDocDrivingLicense : AopObject { /// /// 准驾车型 /// [JsonProperty("clazz")] public string Clazz { get; set; } /// /// 证号 /// [JsonProperty("driving_license_no")] public string DrivingLicenseNo { get; set; } /// /// base64后的主页照片 /// [JsonProperty("encoded_img_main")] public string EncodedImgMain { get; set; } /// /// base64编码后的副页图片 /// [JsonProperty("encoded_img_vice")] public string EncodedImgVice { get; set; } /// /// 失效日期 /// [JsonProperty("expire_date")] public string ExpireDate { get; set; } /// /// 档案编号 /// [JsonProperty("file_no")] public string FileNo { get; set; } /// /// 姓名 /// [JsonProperty("name")] public string Name { get; set; } /// /// 生效日期 /// [JsonProperty("valide_date")] public string ValideDate { get; set; } } }