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