NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppMessageTopicSu...

43 lines
1.2 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenAppMessageTopicSubscribeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppMessageTopicSubscribeModel : AopObject
{
/// <summary>
/// 授权令牌
/// </summary>
[XmlElement("auth_token")]
public string AuthToken { get; set; }
/// <summary>
/// 授权类型例如app_auth表示三方应用授权
/// </summary>
[XmlElement("auth_type")]
public string AuthType { get; set; }
/// <summary>
/// 消费该topic消息的通讯协议类型目前支持HTTP 或者 WebSocket
/// </summary>
[XmlElement("comm_type")]
public string CommType { get; set; }
/// <summary>
/// 消息标签用于消息子类型过滤。使用前请确认消息topic是否支持
/// </summary>
[XmlElement("tag")]
public string Tag { get; set; }
/// <summary>
/// 消息主题名称
/// </summary>
[XmlElement("topic")]
public string Topic { get; set; }
}
}