NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicMessageSing...

25 lines
661 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>
/// AlipayOpenPublicMessageSingleSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicMessageSingleSendModel : AopObject
{
/// <summary>
/// 消息模板相关参数其中包括templateId模板ID和context模板上下文
/// </summary>
[XmlElement("template")]
public Template Template { get; set; }
/// <summary>
/// 消息接收用户的userid
/// </summary>
[XmlElement("to_user_id")]
public string ToUserId { get; set; }
}
}