NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntOcrVehiclelicenseIdentif...

31 lines
766 B
C#
Raw Permalink 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>
/// AntOcrVehiclelicenseIdentifyModel Data Structure.
/// </summary>
[Serializable]
public class AntOcrVehiclelicenseIdentifyModel : 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; }
}
}