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