31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayUserElectronicidMerchantbarcodeCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayUserElectronicidMerchantbarcodeCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 动态码过期时间,单位秒,当type为DYNAMIC时为必填参数
|
||
/// </summary>
|
||
[XmlElement("expire_time")]
|
||
public long ExpireTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 生成商家网证二维码的类型,用于区分二维码有效期类型,动态二维码:DYNAMIC,静态二维码:STATIC
|
||
/// </summary>
|
||
[XmlElement("type")]
|
||
public string Type { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户提供的唯一标识,不感知大小写等问题,支付宝只做透传,当用户扫商户时,商户会拿到的这个透传值
|
||
/// </summary>
|
||
[XmlElement("unique_id")]
|
||
public string UniqueId { get; set; }
|
||
}
|
||
}
|