NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPassInstanceAddModel.cs

37 lines
1.1 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>
/// AlipayPassInstanceAddModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPassInstanceAddModel : AopObject
{
/// <summary>
/// 支付宝用户识别信息uid发券组件。对接文档https://docs.open.alipay.com/199/sy3hs4
/// </summary>
[XmlElement("recognition_info")]
public string RecognitionInfo { get; set; }
/// <summary>
/// Alipass添加对象识别类型1订单信息
/// </summary>
[XmlElement("recognition_type")]
public string RecognitionType { get; set; }
/// <summary>
/// 支付宝pass模版ID即调用模板创建接口时返回的tpl_id。
/// </summary>
[XmlElement("tpl_id")]
public string TplId { get; set; }
/// <summary>
/// 模版动态参数信息:对应模板中$变量名$的动态参数见模板创建接口返回值中的tpl_params字段
/// </summary>
[XmlElement("tpl_params")]
public string TplParams { get; set; }
}
}