using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOpenAuthTokenAppResponse. /// public class AlipayOpenAuthTokenAppResponse : AopResponse { /// /// 应用授权令牌 /// [JsonProperty("app_auth_token")] public string AppAuthToken { get; set; } /// /// 刷新令牌 /// [JsonProperty("app_refresh_token")] public string AppRefreshToken { get; set; } /// /// 授权商户的appid /// [JsonProperty("auth_app_id")] public string AuthAppId { get; set; } /// /// 应用授权令牌的有效时间(从接口调用时间作为起始时间),单位到秒 /// [JsonProperty("expires_in")] public string ExpiresIn { get; set; } /// /// 刷新令牌的有效时间(从接口调用时间作为起始时间),单位到秒 /// [JsonProperty("re_expires_in")] public string ReExpiresIn { get; set; } /// /// 授权商户的user_id /// [JsonProperty("user_id")] public string UserId { get; set; } } }