using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipaySystemOauthTokenResponse. /// public class AlipaySystemOauthTokenResponse : AopResponse { /// /// 访问令牌。通过该令牌调用需要授权类接口 /// [JsonProperty("access_token")] public string AccessToken { get; set; } /// /// 已废弃,请勿使用 /// [JsonProperty("alipay_user_id")] public string AlipayUserId { get; set; } /// /// 访问令牌的有效时间,单位是秒。 /// [JsonProperty("expires_in")] public string ExpiresIn { get; set; } /// /// 刷新令牌的有效时间,单位是秒。 /// [JsonProperty("re_expires_in")] public string ReExpiresIn { get; set; } /// /// 刷新令牌。通过该令牌可以刷新access_token /// [JsonProperty("refresh_token")] public string RefreshToken { get; set; } /// /// 支付宝用户的唯一userId /// [JsonProperty("user_id")] public string UserId { get; set; } } }