NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicMessagePrev...

27 lines
781 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>
/// AlipayOpenPublicMessagePreviewSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicMessagePreviewSendModel : AopObject
{
/// <summary>
/// 预览用户登录id列表每次做多发送5个用户且这5个用户必须是生活号的管理员或者是操作员,
/// </summary>
[XmlArray("logon_ids")]
[XmlArrayItem("string")]
public List<string> LogonIds { get; set; }
/// <summary>
/// 推送的消息体信息
/// </summary>
[XmlElement("msg_body")]
public PublicMessageBody MsgBody { get; set; }
}
}