using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayTrustUserTokenGetResponse.
///
public class AlipayTrustUserTokenGetResponse : AopResponse
{
///
/// 访问令牌
///
[JsonProperty("access_token")]
public string AccessToken { get; set; }
///
/// 本字段已废弃
///
[JsonProperty("refresh_token")]
public string RefreshToken { get; set; }
}
}