22 lines
495 B
C#
22 lines
495 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayAppTokenGetResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class AlipayAppTokenGetResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 应用访问令牌
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("app_access_token")]
|
||
|
|
public string AppAccessToken { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 应用访问凭证有效时间,单位:秒
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("expires_in")]
|
||
|
|
public long ExpiresIn { get; set; }
|
||
|
|
}
|
||
|
|
}
|