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

25 lines
729 B
C#
Raw 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>
/// AlipayPassTemplateAddModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPassTemplateAddModel : AopObject
{
/// <summary>
/// 模板内容信息遵循JSON规范详情参见tpl_content参数说明https://doc.open.alipay.com/doc2/detail.htm?treeId=193&articleId=105249&docType
/// =1#tpl_content
/// </summary>
[JsonProperty("tpl_content")]
public string TplContent { get; set; }
/// <summary>
/// 商户用于控制模版的唯一性。(可以使用时间戳保证唯一性)
/// </summary>
[JsonProperty("unique_id")]
public string UniqueId { get; set; }
}
}