NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicMessageQuer...

21 lines
606 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>
/// AlipayOpenPublicMessageQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicMessageQueryModel : AopObject
{
/// <summary>
/// 消息id集限制最多传入20个message_id。message_id在调用群发、组发消息接口时会返回需调用方保存
/// </summary>
[XmlArray("message_ids")]
[XmlArrayItem("string")]
public List<string> MessageIds { get; set; }
}
}