NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniQrcodeBindMod...

31 lines
1.4 KiB
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>
/// AlipayOpenMiniQrcodeBindModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniQrcodeBindModel : AopObject
{
/// <summary>
/// 匹配规则仅支持EXACT精确匹配、FUZZY模糊匹配两个值。 精确匹配根据填写的二维码地址精确匹配地址完全一致时才能唤起小程序配置二维码地址为https://www.alipay.com/my?id=123当用户扫这个地址的二维码可唤起小程序。 模糊匹配根据填写的二维码地址模糊匹配只要地址前缀匹配即可唤起小程序配置二维码地址为https://www.alipay.com/my/当用户扫的二维码地址为https://www.alipay.com/my/id=123,可唤起小程序)。
/// </summary>
[XmlElement("mode")]
public string Mode { get; set; }
/// <summary>
/// 小程序功能页,配置扫描二维码后打开的小程序功能页面路径
/// </summary>
[XmlElement("page_redirection")]
public string PageRedirection { get; set; }
/// <summary>
/// 二维码域名须通过ICP备案验证支持http、https、ftp开头的链接
/// </summary>
[XmlElement("route_url")]
public string RouteUrl { get; set; }
}
}