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