using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayCommerceCityfacilitatorVoucherGenerateResponse. /// public class AlipayCommerceCityfacilitatorVoucherGenerateResponse : AopResponse { /// /// 核销码过期时间 /// [JsonProperty("expired_date")] public string ExpiredDate { get; set; } /// /// 地铁购票二维码编码,可自定义 /// [JsonProperty("qr_code_no")] public string QrCodeNo { get; set; } /// /// 地铁购票的核销码 /// [JsonProperty("ticket_no")] public string TicketNo { get; set; } } }