NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntOcrDriverlicenseIdentify...

31 lines
764 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AntOcrDriverlicenseIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class AntOcrDriverlicenseIdentifyModel : AopObject
{
/// <summary>
/// 图片地址
/// </summary>
[XmlElement("image")]
public string Image { get; set; }
/// <summary>
/// 正面face背面back
/// </summary>
[XmlElement("side")]
public string Side { get; set; }
/// <summary>
/// 图片存储类型url图片url地址aftsIdafts文件服务Id
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}