using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PaymentAbilityPostbackResponse Data Structure.
///
[Serializable]
public class PaymentAbilityPostbackResponse : AopObject
{
///
/// 错误的订单信息
///
[XmlElement("error_order")]
public string ErrorOrder { get; set; }
///
/// 成功的订单列表,逗号分隔
///
[XmlElement("order_ids")]
public string OrderIds { get; set; }
}
}