Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayPassInstanceAddModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1019 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayPassInstanceAddModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPassInstanceAddModel : AopObject
{
/// <summary>
/// 支付宝用户识别信息: 包括partner_id商户的签约账号和out_trade_no某笔订单号
/// </summary>
[JsonProperty("recognition_info")]
public string RecognitionInfo { get; set; }
/// <summary>
/// Alipass添加对象识别类型1订单信息
/// </summary>
[JsonProperty("recognition_type")]
public string RecognitionType { get; set; }
/// <summary>
/// 支付宝pass模版ID
/// </summary>
[JsonProperty("tpl_id")]
public string TplId { get; set; }
/// <summary>
/// 模版动态参数信息:对应模板中$变量名$的动态参数见模板创建接口返回值中的tpl_params字段
/// </summary>
[JsonProperty("tpl_params")]
public string TplParams { get; set; }
}
}