19 lines
574 B
C#
19 lines
574 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|