NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserElectronicidMerch...

31 lines
1.0 KiB
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>
/// 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; }
}
}