using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenAppMessageSubscriptionQueryModel Data Structure.
///
[Serializable]
public class AlipayOpenAppMessageSubscriptionQueryModel : AopObject
{
///
/// 授权令牌
///
[XmlElement("auth_token")]
public string AuthToken { get; set; }
///
/// 授权类型,例如app_auth表示三方应用授权
///
[XmlElement("auth_type")]
public string AuthType { get; set; }
///
/// 消息标签,用于消息子类型过滤。使用前请确认消息topic是否支持
///
[XmlElement("tag")]
public string Tag { get; set; }
///
/// 消息主题名称
///
[XmlElement("topic")]
public string Topic { get; set; }
}
}