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.

48 lines
1.3 KiB
C#

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