using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayOpenPublicMessagePreviewSendResponse.
///
public class AlipayOpenPublicMessagePreviewSendResponse : AopResponse
{
///
/// 消息发送错误数据
///
[XmlArray("error_datas")]
[XmlArrayItem("msg_send_error_data")]
public List ErrorDatas { get; set; }
}
}