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