using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// TicketDetailInfo Data Structure.
///
[Serializable]
public class TicketDetailInfo : AopObject
{
///
/// 总金额,元为单位
///
[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; }
///
/// 订单状态
///
[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; }
}
}