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