37 lines
985 B
C#
37 lines
985 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenAppMessageTopicUnsubscribeModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenAppMessageTopicUnsubscribeModel : 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是否支持
|
||
/// </summary>
|
||
[XmlElement("tag")]
|
||
public string Tag { get; set; }
|
||
|
||
/// <summary>
|
||
/// 消息主题名称
|
||
/// </summary>
|
||
[XmlElement("topic")]
|
||
public string Topic { get; set; }
|
||
}
|
||
}
|