NewGaoKaoApi/PaymentSDK/AliPay/Domain/IdCardImg.cs

31 lines
961 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>
/// IdCardImg Data Structure.
/// </summary>
[Serializable]
public class IdCardImg : AopObject
{
/// <summary>
/// 证件类型营业执照businessLicense身份证IDCARD
/// </summary>
[XmlElement("cardtype")]
public string Cardtype { get; set; }
/// <summary>
/// 图片地址支持一个证件的多页照片同时传入key:页码value:图片地址。页码从1开始递增身份证人脸面为1国徽面为2。 图片地址若是oss地址的话将bucket的名称组装到path里
/// </summary>
[XmlElement("imgurls")]
public string Imgurls { get; set; }
/// <summary>
/// 图片地址类型SFS 或OSS
/// </summary>
[XmlElement("imgurltype")]
public string Imgurltype { get; set; }
}
}