You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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