using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayCommerceCityfacilitatorVoucherBatchqueryResponse. /// public class AlipayCommerceCityfacilitatorVoucherBatchqueryResponse : AopResponse { /// /// 查询到的订单信息列表 /// [JsonProperty("tickets")] public List Tickets { get; set; } } }