NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicMessageTota...

33 lines
927 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenPublicMessageTotalSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicMessageTotalSendModel : AopObject
{
/// <summary>
/// 图文消息当msg_type为image-text该值必须设置
/// </summary>
[XmlArray("articles")]
[XmlArrayItem("article")]
public List<Article> Articles { get; set; }
/// <summary>
/// 消息类型text文本消息image-text图文消息
/// </summary>
[XmlElement("msg_type")]
public string MsgType { get; set; }
/// <summary>
/// 文本消息内容当msg_type为text必须设置该值
/// </summary>
[XmlElement("text")]
public Text Text { get; set; }
}
}