25 lines
655 B
C#
25 lines
655 B
C#
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; }
|
||
}
|
||
}
|