NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserElectronicidOuter...

37 lines
1.3 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>
/// AlipayUserElectronicidOutermerchantbarcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserElectronicidOutermerchantbarcodeCreateModel : AopObject
{
/// <summary>
/// 码类型可选值动态二维码DYNAMIC静态二维码STATIC
/// </summary>
[XmlElement("barcode_type")]
public string BarcodeType { get; set; }
/// <summary>
/// 过期时间单位秒。仅当为动态码时此属性有效。动态码最长有效期为2个小时即7200秒。
/// </summary>
[XmlElement("expire_time")]
public long ExpireTime { get; set; }
/// <summary>
/// 商户类型。可选址为:网吧:CYBERCAFE,酒店宾馆:HOTEL,政务办事大厅:PUBLIC_SERVICE,机场:AIRPORT,长途客运:BUS,铁路:RAILWAY,景区:SCENIC_AREA,场馆:HALL,赛事/集会:GAME,快递邮寄:POST
/// </summary>
[XmlElement("merchant_type")]
public string MerchantType { get; set; }
/// <summary>
/// 扫描商户码后的回跳链接
/// </summary>
[XmlElement("redirect_url")]
public string RedirectUrl { get; set; }
}
}