NewGaoKaoApi/PaymentSDK/AliPay/Domain/Detail.cs

31 lines
909 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>
/// Detail Data Structure.
/// </summary>
[Serializable]
public class Detail : AopObject
{
/// <summary>
/// 英文描述collectAttachement值为true时必填 以下是系统固定code,对上传的图片做相应的校验。 身份证校验情况: 身份证正面照片ESIGN_IDCARD 身份证背面照片ESIGN_BACK_IDCARD
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 请上传手机正面照
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 顺序collectAttachement值为true时必填
/// </summary>
[XmlElement("order")]
public long Order { get; set; }
}
}