using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayCommerceCityfacilitatorVoucherConfirmModel Data Structure. /// [Serializable] public class AlipayCommerceCityfacilitatorVoucherConfirmModel : AopObject { /// /// 金额,元为单位 /// [JsonProperty("amount")] public string Amount { get; set; } /// /// 渠道商提供的其它信息 /// [JsonProperty("biz_info_ext")] public string BizInfoExt { get; set; } /// /// 该笔请求的唯一编号,有值请求强校验 /// [JsonProperty("biz_request_id")] public string BizRequestId { get; set; } /// /// 城市标准码 /// [JsonProperty("city_code")] public string CityCode { get; set; } /// /// 终点站编号 /// [JsonProperty("end_station")] public string EndStation { get; set; } /// /// 单张票编号列表,多个逗号分隔 /// [JsonProperty("exchange_ids")] public string ExchangeIds { get; set; } /// /// 商户核销时间 /// [JsonProperty("operate_time")] public string OperateTime { get; set; } /// /// 商户的交易号 /// [JsonProperty("out_biz_no")] public string OutBizNo { get; set; } /// /// 票数 /// [JsonProperty("quantity")] public string Quantity { get; set; } /// /// 请求方标识 /// [JsonProperty("seller_id")] public string SellerId { get; set; } /// /// 起点站编号 /// [JsonProperty("start_station")] public string StartStation { get; set; } /// /// 核销号 /// [JsonProperty("ticket_no")] public string TicketNo { 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; } } }