using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayOpenPublicMessageTotalSendModel Data Structure.
///
[Serializable]
public class AlipayOpenPublicMessageTotalSendModel : AopObject
{
///
/// 图文消息,当msg_type为image-text,该值必须设置
///
[JsonProperty("articles")]
public List Articles { get; set; }
///
/// 消息类型,text:文本消息,image-text:图文消息
///
[JsonProperty("msg_type")]
public string MsgType { get; set; }
///
/// 文本消息内容,当msg_type为text,必须设置该值
///
[JsonProperty("text")]
public Text Text { get; set; }
}
}