using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayEbppRechargeItemGetResponse.
///
public class AlipayEbppRechargeItemGetResponse : AopResponse
{
///
/// 错误码
///
[XmlElement("error_code")]
public string ErrorCode { get; set; }
///
/// 系统返回错误码
///
[XmlElement("error_message")]
public string ErrorMessage { get; set; }
///
/// 充值面额状态对象list
///
[XmlArray("iterm_infos")]
[XmlArrayItem("iterm_info")]
public List ItermInfos { get; set; }
///
/// 是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
}
}