using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayOpenPublicMessageTotalSendModel Data Structure.
///
[Serializable]
public class AlipayOpenPublicMessageTotalSendModel : AopObject
{
///
/// 图文消息,当msg_type为image-text,该值必须设置
///
[XmlArray("articles")]
[XmlArrayItem("article")]
public List Articles { get; set; }
///
/// 消息类型,text:文本消息,image-text:图文消息
///
[XmlElement("msg_type")]
public string MsgType { get; set; }
///
/// 文本消息内容,当msg_type为text,必须设置该值
///
[XmlElement("text")]
public Text Text { get; set; }
}
}