NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOpenAppMessageSubscri...

30 lines
715 B
C#
Raw 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.Response
{
/// <summary>
/// AlipayOpenAppMessageSubscriptionQueryResponse.
/// </summary>
public class AlipayOpenAppMessageSubscriptionQueryResponse : AopResponse
{
/// <summary>
/// 消息接入方式例如HTTP
/// </summary>
[XmlElement("comm_type")]
public string CommType { get; set; }
/// <summary>
/// 消息标签
/// </summary>
[XmlElement("tag")]
public string Tag { get; set; }
/// <summary>
/// 消息主题名称
/// </summary>
[XmlElement("topic")]
public string Topic { get; set; }
}
}