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