NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayUserAuthZhimaorgIdent...

30 lines
998 B
C#
Raw Permalink Blame History

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;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayUserAuthZhimaorgIdentityApplyResponse.
/// </summary>
public class AlipayUserAuthZhimaorgIdentityApplyResponse : AopResponse
{
/// <summary>
/// 访问令牌。通过该令牌调用需要授权类接口
/// </summary>
[XmlElement("access_token")]
public string AccessToken { get; set; }
/// <summary>
/// 令牌类型permanent表示返回的access_token和refresh_token永久有效不受expires_in和re_expires_in限制默认是空即受expires_in和re_expires_in限制的时效性令牌
/// </summary>
[XmlElement("auth_token_type")]
public string AuthTokenType { get; set; }
/// <summary>
/// 刷新令牌。通过该令牌可以刷新access_token
/// </summary>
[XmlElement("refresh_token")]
public string RefreshToken { get; set; }
}
}