NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniTemplatemessa...

25 lines
931 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniTemplatemessageUsertemplateApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniTemplatemessageUsertemplateApplyModel : AopObject
{
/// <summary>
/// 开发者自行组合好的模板关键词列表,关键词之间使用英文的逗号“,”进行分割关键词顺序可以自由搭配最多支持10个关键词组合,这里组织的关键词,在发送模板消息接口中,按照这里的顺序进行占位符替换
/// </summary>
[XmlElement("keyword_list")]
public string KeywordList { get; set; }
/// <summary>
/// 模板库id可登录小程序后台查看获取
/// </summary>
[XmlElement("template_library_id")]
public string TemplateLibraryId { get; set; }
}
}