using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceIotMsgcenterSendModel Data Structure. /// [Serializable] public class AlipayCommerceIotMsgcenterSendModel : AopObject { /// /// 消息内容 /// [XmlElement("content")] public string Content { get; set; } /// /// 消息发送的时间,毫秒级的时间戳 /// [XmlElement("datetime")] public long Datetime { get; set; } /// /// 扩展参数,json序列化后的字符串 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 消息是否支持跳转链接 /// [XmlElement("is_support_link")] public bool IsSupportLink { get; set; } /// /// 消息跳转链接 /// [XmlElement("link")] public string Link { get; set; } /// /// 消息标题 /// [XmlElement("title")] public string Title { get; set; } /// /// 消息类型, 0:普通消息、1:发送push的消息 /// [XmlElement("type")] public long Type { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }