using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayMemberCouponQuerylistResponse. /// public class AlipayMemberCouponQuerylistResponse : AopResponse { /// /// 券信息数组. 如果没有查询到券信息,则为数组长度为0。 否则返回券信息数组 /// [XmlArray("coupon_list")] [XmlArrayItem("coupon")] public List CouponList { get; set; } /// /// 请求成功时,不存在本参数; 请求失败时,本参数为错误代码,参见“7 错误码”。 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 请求成功时,不存在本参数; 请求失败时,本参数返回具体的错误原因。 /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// 本轮查询返回的数量 /// [XmlElement("list_size")] public string ListSize { get; set; } /// /// 整个业务处理成功时 返回T否则返回F。 具体的错误码和 信息科参考error_code和error_msg信息 /// [XmlElement("success_code")] public string SuccessCode { get; set; } /// /// 总记录数 /// [XmlElement("total_num")] public string TotalNum { get; set; } } }