Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceCityfacilitatorVoucherConfirmResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

70 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayCommerceCityfacilitatorVoucherConfirmResponse.
/// </summary>
public class AlipayCommerceCityfacilitatorVoucherConfirmResponse : AopResponse
{
/// <summary>
/// 订单金额,元为单位
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 终点站
/// </summary>
[JsonProperty("end_station")]
public string EndStation { get; set; }
/// <summary>
/// 终点站点名称
/// </summary>
[JsonProperty("end_station_name")]
public string EndStationName { get; set; }
/// <summary>
/// 订单中包含的票数
/// </summary>
[JsonProperty("quantity")]
public string Quantity { get; set; }
/// <summary>
/// 起点站
/// </summary>
[JsonProperty("start_station")]
public string StartStation { get; set; }
/// <summary>
/// 起始站点名称
/// </summary>
[JsonProperty("start_station_name")]
public string StartStationName { get; set; }
/// <summary>
/// 该笔订单状态默认必然是SUCCESS
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
/// <summary>
/// 票单价
/// </summary>
[JsonProperty("ticket_price")]
public string TicketPrice { get; set; }
/// <summary>
/// 描述票种类
/// </summary>
[JsonProperty("ticket_type")]
public string TicketType { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}