NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataMessageD...

31 lines
972 B
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>
/// KoubeiMarketingDataMessageDeliverModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataMessageDeliverModel : AopObject
{
/// <summary>
/// 消息内容json格式 KEY值编号递增
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
/// <summary>
/// 扩展信息, json格式 key值 REDIRECT_URL跳转地址; CHANNEL发送渠道对应value值为MSGBOX消息盒子PUSH手机消息通知
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 消息业务类型 活动推荐消息PROMO_RECOMMEND; 活动效果消息: PROMO_STAT
/// </summary>
[XmlElement("msg_type")]
public string MsgType { get; set; }
}
}