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

25 lines
663 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>
/// AlipayPassTemplateUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPassTemplateUpdateModel : 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>
/// 更新的模板ID
/// </summary>
[JsonProperty("tpl_id")]
public string TplId { get; set; }
}
}