NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayIserviceCognitiveOcrI...

25 lines
655 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>
/// AlipayIserviceCognitiveOcrIdcardQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayIserviceCognitiveOcrIdcardQueryModel : AopObject
{
/// <summary>
/// 身份证图片base64编码内容
/// </summary>
[XmlElement("image_content")]
public string ImageContent { get; set; }
/// <summary>
/// face: 身份证正面 back: 身份证反面 缺省值是face
/// </summary>
[XmlElement("side")]
public string Side { get; set; }
}
}