using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenServicemarketOrderQueryResponse. /// public class AlipayOpenServicemarketOrderQueryResponse : AopResponse { /// /// 订购服务商品ID /// [XmlElement("commodity_id")] public string CommodityId { get; set; } /// /// 当前查询页(本接口支持最多查询100条记录) /// [XmlElement("current_page")] public long CurrentPage { get; set; } /// /// 订单明细列表 /// [XmlArray("order_items")] [XmlArrayItem("order_item")] public List OrderItems { get; set; } /// /// 用于区分同一个服务的不同版本 /// [XmlElement("specifications")] public string Specifications { get; set; } /// /// MERCHANT_ORDED(待服务商接单) /// [XmlElement("status")] public string Status { get; set; } /// /// 总记录数 /// [XmlElement("total_size")] public long TotalSize { get; set; } } }