using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// OpenmallRefundBatchGetResponse. /// public class OpenmallRefundBatchGetResponse : TopResponse { /// /// 退款列表 /// [XmlArray("entities")] [XmlArrayItem("top_refund_vo")] public List Entities { get; set; } /// /// 范围内总的退款单个数 /// [XmlElement("total_count")] public long TotalCount { get; set; } /// /// TopRefundVoDomain Data Structure. /// [Serializable] public class TopRefundVoDomain : TopObject { /// /// 退款单创建时间 /// [XmlElement("created")] public string Created { get; set; } /// /// 请求退款金额 /// [XmlElement("refund_fee")] public string RefundFee { get; set; } /// /// 退款单ID /// [XmlElement("refund_id")] public long RefundId { get; set; } /// /// 退款单状态,此接口存在延迟,详情参考taobao.openmall.refund.get /// [XmlElement("status")] public string Status { get; set; } /// /// 对应订单ID /// [XmlElement("tid")] public long Tid { get; set; } } } }