NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCityserviceMessage...

33 lines
1022 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>
/// AlipayEcoCityserviceMessageSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCityserviceMessageSendModel : AopObject
{
/// <summary>
/// 消息条数默认1需和msg_list数组中消息实际条数保持一致上限1000条
/// </summary>
[XmlElement("batch_size")]
public long BatchSize { get; set; }
/// <summary>
/// 敏感字段加密类型目前支持md5默认加密字段是msg_list中每条消息的“certificate_number”字段
/// </summary>
[XmlElement("encrypt_type")]
public string EncryptType { get; set; }
/// <summary>
/// 消息列表
/// </summary>
[XmlArray("msg_list")]
[XmlArrayItem("alipay_eco_message_entity")]
public List<AlipayEcoMessageEntity> MsgList { get; set; }
}
}