using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOpenAuthTokenAppQueryResponse. /// public class AlipayOpenAuthTokenAppQueryResponse : AopResponse { /// /// 授权商户的appid /// [JsonProperty("auth_app_id")] public string AuthAppId { get; set; } /// /// 授权失效时间 /// [JsonProperty("auth_end")] public string AuthEnd { get; set; } /// /// 当前app_auth_token的授权接口列表 /// [JsonProperty("auth_methods")] public List AuthMethods { get; set; } /// /// 授权生效时间 /// [JsonProperty("auth_start")] public string AuthStart { get; set; } /// /// 应用授权令牌失效时间,单位到秒 /// [JsonProperty("expires_in")] public long ExpiresIn { get; set; } /// /// valid:有效状态;invalid:无效状态 /// [JsonProperty("status")] public string Status { get; set; } /// /// 授权商户的user_id /// [JsonProperty("user_id")] public string UserId { get; set; } } }