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