NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportVehi...

33 lines
1.0 KiB
C#
Raw 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>
/// AlipayCommerceTransportVehicleownerMessageSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportVehicleownerMessageSendModel : AopObject
{
/// <summary>
/// 消息条数需和msg_list数组中消息实际条数保持一致上限20条
/// </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("veh_message_entity")]
public List<VehMessageEntity> MsgList { get; set; }
}
}