using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayEcoCityserviceMessageSendModel Data Structure.
///
[Serializable]
public class AlipayEcoCityserviceMessageSendModel : AopObject
{
///
/// 消息条数,默认1,需和msg_list数组中消息实际条数保持一致,上限1000条
///
[XmlElement("batch_size")]
public long BatchSize { get; set; }
///
/// 敏感字段加密类型,目前支持md5,默认加密字段是msg_list中每条消息的“certificate_number”字段
///
[XmlElement("encrypt_type")]
public string EncryptType { get; set; }
///
/// 消息列表
///
[XmlArray("msg_list")]
[XmlArrayItem("alipay_eco_message_entity")]
public List MsgList { get; set; }
}
}