You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
1.8 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayCommerceCityfacilitatorVoucherConfirmResponse.
/// </summary>
public class AlipayCommerceCityfacilitatorVoucherConfirmResponse : AopResponse
{
/// <summary>
/// 订单金额,元为单位
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 终点站
/// </summary>
[XmlElement("end_station")]
public string EndStation { get; set; }
/// <summary>
/// 终点站点名称
/// </summary>
[XmlElement("end_station_name")]
public string EndStationName { get; set; }
/// <summary>
/// 订单中包含的票数
/// </summary>
[XmlElement("quantity")]
public string Quantity { get; set; }
/// <summary>
/// 起点站
/// </summary>
[XmlElement("start_station")]
public string StartStation { get; set; }
/// <summary>
/// 起始站点名称
/// </summary>
[XmlElement("start_station_name")]
public string StartStationName { get; set; }
/// <summary>
/// 该笔订单状态默认必然是SUCCESS
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 票单价
/// </summary>
[XmlElement("ticket_price")]
public string TicketPrice { get; set; }
/// <summary>
/// 描述票种类
/// </summary>
[XmlElement("ticket_type")]
public string TicketType { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}