Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceTransportOfflinepayKeyQueryResponse.cs

19 lines
574 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayCommerceTransportOfflinepayKeyQueryResponse.
/// </summary>
public class AlipayCommerceTransportOfflinepayKeyQueryResponse : AopResponse
{
/// <summary>
/// 支付宝脱机交易公钥列表。列表中每一项为一个有效的支付宝公钥信息, 其中id字段表示支付宝公钥id。
/// </summary>
[JsonProperty("keys")]
public List<AlipayOfflinePayMasterKey> Keys { get; set; }
}
}