NewGaoKaoApi/PaymentSDK/AliPay/Domain/PassTemplateDetail.cs

45 lines
1.4 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// PassTemplateDetail Data Structure.
/// </summary>
[Serializable]
public class PassTemplateDetail : AopObject
{
/// <summary>
/// 模板创建时间,格式"yyyy-MM-dd HH:mm:ss"
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 模板最后修改时间,格式"yyyy-MM-dd HH:mm:ss"
/// </summary>
[XmlElement("modify_time")]
public string ModifyTime { get; set; }
/// <summary>
/// 模板内容信息文本遵循JSON规范即创建模板时传入tpl_content字段 详情参见tpl_content参数说明https://doc.open.alipay.com/doc2/detail.htm?treeId=193&articleId=105249&docType=1#tpl_content
/// </summary>
[XmlElement("tpl_content")]
public string TplContent { get; set; }
/// <summary>
/// 模板ID编号
/// </summary>
[XmlElement("tpl_id")]
public string TplId { get; set; }
/// <summary>
/// 模板上定制的动态参数(变量)列表
/// </summary>
[XmlArray("tpl_params")]
[XmlArrayItem("string")]
public List<string> TplParams { get; set; }
}
}