using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayPassInstanceAddModel Data Structure.
///
[Serializable]
public class AlipayPassInstanceAddModel : AopObject
{
///
/// 支付宝用户识别信息: 包括partner_id(商户的签约账号)和out_trade_no(某笔订单号)
///
[JsonProperty("recognition_info")]
public string RecognitionInfo { get; set; }
///
/// Alipass添加对象识别类型:1–订单信息
///
[JsonProperty("recognition_type")]
public string RecognitionType { get; set; }
///
/// 支付宝pass模版ID
///
[JsonProperty("tpl_id")]
public string TplId { get; set; }
///
/// 模版动态参数信息:对应模板中$变量名$的动态参数,见模板创建接口返回值中的tpl_params字段
///
[JsonProperty("tpl_params")]
public string TplParams { get; set; }
}
}