Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceCityfacilitatorVoucherGenerateResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

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; }
}
}