using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayCommerceCityfacilitatorVoucherQueryResponse. /// public class AlipayCommerceCityfacilitatorVoucherQueryResponse : AopResponse { /// /// 订单金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 终点站 /// [XmlElement("end_station")] public string EndStation { get; set; } /// /// 终点站点名称 /// [XmlElement("end_station_name")] public string EndStationName { get; set; } /// /// 订单中包含的票数 /// [XmlElement("quantity")] public string Quantity { get; set; } /// /// 起点站 /// [XmlElement("start_station")] public string StartStation { get; set; } /// /// 起始站点名称 /// [XmlElement("start_station_name")] public string StartStationName { get; set; } /// /// 查询的该笔订单当前状态(SUCCESS、TRANSFER、FAIL等) /// [XmlElement("status")] public string Status { get; set; } /// /// 票单价 /// [XmlElement("ticket_price")] public string TicketPrice { get; set; } /// /// 描述票种类 /// [XmlElement("ticket_type")] public string TicketType { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }