NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserElectronicidUserb...

25 lines
716 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>
/// AlipayUserElectronicidUserbarcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserElectronicidUserbarcodeCreateModel : AopObject
{
/// <summary>
/// 机构方根据cert_id查到机构内部用户信息的唯一字符串。比如身份证号+姓名 AES加密后的值
/// </summary>
[XmlElement("cert_id")]
public string CertId { get; set; }
/// <summary>
/// 二维码超时时间,单位秒
/// </summary>
[XmlElement("expire_time")]
public long ExpireTime { get; set; }
}
}